Commit eaa94874 authored by yo's avatar yo Committed by Yogi

Update buttons

parent 3a85bdc8
...@@ -46,9 +46,9 @@ export default { ...@@ -46,9 +46,9 @@ export default {
...mapGetters(['hasForwardDeploymentFailure']), ...mapGetters(['hasForwardDeploymentFailure']),
...mapState(['job', 'stages', 'jobs', 'selectedStage']), ...mapState(['job', 'stages', 'jobs', 'selectedStage']),
retryButtonClass() { retryButtonClass() {
let className = 'btn gl-button btn-retry gl-text-decoration-none!'; let className = 'btn gl-button gl-text-decoration-none!';
className += className +=
this.job.status && this.job.recoverable ? ' btn-confirm-secondary' : ' btn-default'; this.job.status && this.job.recoverable ? ' btn-confirm' : ' btn-confirm-secondary';
return className; return className;
}, },
hasArtifact() { hasArtifact() {
......
...@@ -355,7 +355,7 @@ export default { ...@@ -355,7 +355,7 @@ export default {
:title="$options.i18n.redeployTitle" :title="$options.i18n.redeployTitle"
:disabled="isRetrying" :disabled="isRetrying"
:loading="isRetrying" :loading="isRetrying"
class="js-pipelines-retry-button btn-retry" class="js-pipelines-retry-button"
data-qa-selector="pipeline_retry_button" data-qa-selector="pipeline_retry_button"
icon="repeat" icon="repeat"
variant="default" variant="default"
......
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