Skip to content

Commit

Permalink
fix(core): Hide "Run as user" when using managed service users (#7013)
Browse files Browse the repository at this point in the history
Regression introduced in #6970 while converting triggers to React
  • Loading branch information
jervi authored and Jammy Louie committed May 16, 2019
1 parent 05b0436 commit 5b6ad2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class BaseTrigger extends React.Component<IBaseTriggerConfigProps, IBaseT
const { serviceAccounts } = this.state;
return (
<>
{SETTINGS.feature.fiatEnabled && serviceAccounts && (
{SETTINGS.feature.fiatEnabled && serviceAccounts && !SETTINGS.feature.managedServiceAccounts && (
<div className="form-group">
<RunAsUser
serviceAccounts={serviceAccounts}
Expand Down

0 comments on commit 5b6ad2a

Please sign in to comment.