Commit 6a7af99a authored by Regis's avatar Regis

changed label to group for css

parent 28d32033
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
return `Build: ${this.stage.status.label}`; return `Build: ${this.stage.status.label}`;
}, },
tooltip() { tooltip() {
return `has-tooltip ci-status-icon-${this.stage.status.label}`; return `has-tooltip ci-status-icon-${this.stage.status.group}`;
}, },
svg() { svg() {
return this.svgs[this.match(this.stage.status.icon)]; return this.svgs[this.match(this.stage.status.icon)];
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
cssClasses() { cssClasses() {
const cssObject = {}; const cssObject = {};
cssObject['ci-status'] = true; cssObject['ci-status'] = true;
cssObject[`ci-${this.pipeline.details.status.text}`] = true; cssObject[`ci-${this.pipeline.details.status.group}`] = true;
return cssObject; return cssObject;
}, },
svg() { svg() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment