Skip to content

Commit

Permalink
fix(core): set runAsUser field correctly on triggers (#7048)
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherchrisberry committed May 22, 2019
1 parent f0287a1 commit a683832
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ export class BaseTrigger extends React.Component<IBaseTriggerConfigProps, IBaseT
<div className="form-group">
<RunAsUser
serviceAccounts={serviceAccounts}
onChange={(user: string) => this.onUpdateTrigger({ user })}
value={trigger.user}
onChange={(runAsUser: string) => this.onUpdateTrigger({ runAsUser })}
value={trigger.runAsUser}
selectColumns={6}
/>
</div>
Expand Down

0 comments on commit a683832

Please sign in to comment.