diff --git a/components/app/Footer.vue b/components/app/Footer.vue index 249358235..383b3bc6a 100644 --- a/components/app/Footer.vue +++ b/components/app/Footer.vue @@ -7,7 +7,7 @@ :title="LEFT_SIDEBAR ? $t('hide.sidebar') : $t('show.sidebar')" icon="menu_open" :class="{ 'transform rotate-180': !LEFT_SIDEBAR }" - @click.native="toggleSetting('LEFT_SIDEBAR')" + @click.native="LEFT_SIDEBAR = !LEFT_SIDEBAR" />
@@ -98,7 +98,7 @@ icon="menu_open" class="transform rotate-180" :class="{ 'rotate-0': !RIGHT_SIDEBAR }" - @click.native="toggleSetting('RIGHT_SIDEBAR')" + @click.native="RIGHT_SIDEBAR = !RIGHT_SIDEBAR" />
@@ -107,47 +107,34 @@