Fix navigation drawer collapse functionality in all layouts
All checks were successful
Build And Push Image / docker (push) Successful in 1m53s
All checks were successful
Build And Push Image / docker (push) Successful in 1m53s
- Replace dynamic width binding with static width and rail-width props - Remove Vuetify 2 pattern (:width="miniVariant ? 56 : 280") - Add Vuetify 3 compatible props (width="280" rail-width="56") - Applied fix to admin.vue, board.vue, and member.vue layouts - Sidebar now properly collapses to rail mode when toggled 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -40,7 +40,8 @@
|
|||||||
"mcp__serena__find_referencing_symbols",
|
"mcp__serena__find_referencing_symbols",
|
||||||
"mcp__zen__thinkdeep",
|
"mcp__zen__thinkdeep",
|
||||||
"mcp__serena__insert_after_symbol",
|
"mcp__serena__insert_after_symbol",
|
||||||
"mcp__serena__replace_symbol_body"
|
"mcp__serena__replace_symbol_body",
|
||||||
|
"mcp__playwright__browser_fill_form"
|
||||||
],
|
],
|
||||||
"deny": [],
|
"deny": [],
|
||||||
"ask": []
|
"ask": []
|
||||||
|
|||||||
@@ -5,7 +5,8 @@
|
|||||||
:rail="miniVariant"
|
:rail="miniVariant"
|
||||||
:expand-on-hover="false"
|
:expand-on-hover="false"
|
||||||
permanent
|
permanent
|
||||||
:width="miniVariant ? 56 : 280"
|
width="280"
|
||||||
|
rail-width="56"
|
||||||
class="enhanced-glass-drawer"
|
class="enhanced-glass-drawer"
|
||||||
>
|
>
|
||||||
<!-- Enhanced Logo Section -->
|
<!-- Enhanced Logo Section -->
|
||||||
|
|||||||
@@ -5,7 +5,8 @@
|
|||||||
:rail="miniVariant"
|
:rail="miniVariant"
|
||||||
:expand-on-hover="false"
|
:expand-on-hover="false"
|
||||||
permanent
|
permanent
|
||||||
:width="miniVariant ? 56 : 280"
|
width="280"
|
||||||
|
rail-width="56"
|
||||||
class="enhanced-glass-drawer"
|
class="enhanced-glass-drawer"
|
||||||
>
|
>
|
||||||
<!-- Enhanced Logo Section -->
|
<!-- Enhanced Logo Section -->
|
||||||
|
|||||||
@@ -5,7 +5,8 @@
|
|||||||
:rail="miniVariant"
|
:rail="miniVariant"
|
||||||
:expand-on-hover="false"
|
:expand-on-hover="false"
|
||||||
permanent
|
permanent
|
||||||
:width="miniVariant ? 56 : 280"
|
width="280"
|
||||||
|
rail-width="56"
|
||||||
class="enhanced-glass-drawer"
|
class="enhanced-glass-drawer"
|
||||||
>
|
>
|
||||||
<!-- Logo Section with Enhanced Glass Effect -->
|
<!-- Logo Section with Enhanced Glass Effect -->
|
||||||
|
|||||||
Reference in New Issue
Block a user