Skip to content

Commit

Permalink
fix(*): Fix imports (#6991)
Browse files Browse the repository at this point in the history
The deck build is currently failing as non-allowed imports are present;
fix these to import submodules
  • Loading branch information
ezimanyi committed May 14, 2019
1 parent ea23876 commit 98c9327
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Observable, Subject } from 'rxjs';
import { IArtifactoryTrigger } from 'core/domain/ITrigger';
import { BaseTrigger } from 'core/pipeline';
import { ArtifactoryReaderService } from './artifactoryReader.service';
import { Application } from 'core';
import { Application } from '@spinnaker/core';

export interface IArtifactoryTriggerConfigProps {
trigger: IArtifactoryTrigger;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { BaseTrigger } from 'core/pipeline';
import { IPipeline, IPipelineTrigger } from 'core/domain';
import { PipelineConfigService } from 'core/pipeline/config/services/PipelineConfigService';
import { Checklist } from 'core/forms';
import { Application } from 'core';
import { Application } from '@spinnaker/core';
import { Subject } from 'rxjs/Subject';

export interface IPipelineTriggerConfigProps {
Expand Down

0 comments on commit 98c9327

Please sign in to comment.