Skip to content

Commit

Permalink
fix(core/pipeline): did you know 'window.status' is a thing? Me neither.
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherthielen committed Aug 7, 2019
1 parent 9a37c5d commit a4298e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function ArtifactoryTrigger() {

const validationStatus = fetchNames.status === 'REJECTED' ? 'error' : null;
const validationMessage =
status === 'REJECTED'
fetchNames.status === 'REJECTED'
? `Error fetching artifactory names: ${fetchNames.error.data.status} ${fetchNames.error.data.error}`
: null;

Expand Down

0 comments on commit a4298e0

Please sign in to comment.