Skip to content

Commit 873957d

Browse files
committed
fix(Recipes): Enable urlInputPrefix for team and customURL
1 parent 246132a commit 873957d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/components/settings/services/EditServiceForm.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,11 @@ export default class EditServiceForm extends Component {
202202
>
203203
{recipe.hasTeamId && (
204204
<TabItem title={intl.formatMessage(messages.tabHosted)}>
205-
<Input field={form.$('team')} suffix={recipe.urlInputSuffix} />
205+
<Input
206+
field={form.$('team')}
207+
prefix={recipe.urlInputPrefix}
208+
suffix={recipe.urlInputSuffix}
209+
/>
206210
</TabItem>
207211
)}
208212
{recipe.hasCustomUrl && (

0 commit comments

Comments
 (0)