Skip to content

Commit

Permalink
fix(core): fix produces artifacts UI (#7343)
Browse files Browse the repository at this point in the history
  • Loading branch information
maggieneterval authored Aug 19, 2019
1 parent 9812469 commit b6ea1de
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ import { module } from 'angular';
import { react2angular } from 'react2angular';

import { Triggers } from './Triggers';
import { ARTIFACT_MODULE } from './artifacts/artifact.module';

export const TRIGGERS = 'spinnaker.core.pipeline.config.trigger.triggersDirective';
module(TRIGGERS, []).component(
module(TRIGGERS, [ARTIFACT_MODULE]).component(
'triggers',
react2angular(Triggers, ['application', 'pipeline', 'fieldUpdated', 'updatePipelineConfig']),
);

0 comments on commit b6ea1de

Please sign in to comment.