BigW Consortium Gitlab

Commit 41f2c1d5 by Dennis Tang

show button toggle value as primary text color when single project is selected

parent b53e544c
......@@ -56,6 +56,9 @@ export default {
computed: {
...mapState(['selectedProject']),
...mapGetters(['hasProject']),
hasOneProject() {
return this.items.length === 1;
},
isDisabled() {
return this.items.length < 2;
},
......@@ -158,7 +161,7 @@ export default {
:value="selectedProject.projectId"
/>
<dropdown-button
:class="{ 'gl-field-error-outline': hasErrors }"
:class="{ 'gl-field-error-outline': hasErrors, 'read-only': hasOneProject }"
:is-disabled="isDisabled"
:is-loading="isLoading"
:toggle-text="toggleText"
......
......@@ -63,6 +63,10 @@
border-radius: $border-radius-base;
white-space: nowrap;
&:disabled.read-only {
color: $gl-text-color !important;
}
&.no-outline {
outline: 0;
}
......
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