Skip to content

Commit

Permalink
fix: show panels toggle 'Reset' button text color as primary color
Browse files Browse the repository at this point in the history
show panels toggle 'reset' button text color as primary color when at least one panel is hidden
  • Loading branch information
malkja committed Oct 8, 2024
1 parent 07c77b5 commit 0464b0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/header/PanelsToggle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</div>
<BaseButton
v-if="toggles.length > 0"
:class="'text-' + resetColor"
:class="'t-text-' + resetColor"
:title="$t('reset_view')"
:text="$t('reset')"
display="flat"
Expand Down Expand Up @@ -54,7 +54,7 @@
</div>
<BaseButton
v-if="toggles.length > 0"
:class="'text-' + resetColor"
:class="'t-text-' + resetColor"
:title="$t('reset_view')"
:text="$t('reset')"
display="flat"
Expand Down

0 comments on commit 0464b0b

Please sign in to comment.