diff --git a/src/components/TheSidebar.vue b/src/components/TheSidebar.vue index 87f954c..b509beb 100644 --- a/src/components/TheSidebar.vue +++ b/src/components/TheSidebar.vue @@ -3,7 +3,7 @@ :style="{borderTopRightRadius: this.currenPageBorder ? '0px' : '4px'}" ) .flex.flex-col.gap-y-6 - the-button-sidebar( + base-button-sidebar( v-for="button in pageSettings.filter((el) => el.id !== 'settings')", :path="button.path", :id="button.id", @@ -12,7 +12,7 @@ ) q-icon(:name="`app:${button.icon}`", size="36px") .flex.text-4xl.flex-col.gap-y-6 - the-button-sidebar( + base-button-sidebar( :path="getSettings.path", :id="getSettings.id", :active="getSettings.active", @@ -22,11 +22,11 @@