Skip to content

Commit

Permalink
fix(Recipes): Enable urlInputPrefix for team and customURL
Browse files Browse the repository at this point in the history
  • Loading branch information
adlk committed Dec 14, 2017
1 parent 246132a commit 873957d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/settings/services/EditServiceForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,11 @@ export default class EditServiceForm extends Component {
>
{recipe.hasTeamId && (
<TabItem title={intl.formatMessage(messages.tabHosted)}>
<Input field={form.$('team')} suffix={recipe.urlInputSuffix} />
<Input
field={form.$('team')}
prefix={recipe.urlInputPrefix}
suffix={recipe.urlInputSuffix}
/>
</TabItem>
)}
{recipe.hasCustomUrl && (
Expand Down

0 comments on commit 873957d

Please sign in to comment.