changed label to group for css

This commit is contained in:
Regis 2016-12-21 17:30:27 -07:00
parent 28d3203362
commit 6a7af99a42
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
return `Build: ${this.stage.status.label}`;
},
tooltip() {
return `has-tooltip ci-status-icon-${this.stage.status.label}`;
return `has-tooltip ci-status-icon-${this.stage.status.group}`;
},
svg() {
return this.svgs[this.match(this.stage.status.icon)];

View file

@ -10,7 +10,7 @@
cssClasses() {
const cssObject = {};
cssObject['ci-status'] = true;
cssObject[`ci-${this.pipeline.details.status.text}`] = true;
cssObject[`ci-${this.pipeline.details.status.group}`] = true;
return cssObject;
},
svg() {