Fix navigation drawer collapse functionality in all layouts
Build And Push Image / docker (push) Successful in 1m53s
Details
Build And Push Image / docker (push) Successful in 1m53s
Details
- 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:
parent
f20c1ef96a
commit
52c10a6c1b
|
|
@ -40,7 +40,8 @@
|
|||
"mcp__serena__find_referencing_symbols",
|
||||
"mcp__zen__thinkdeep",
|
||||
"mcp__serena__insert_after_symbol",
|
||||
"mcp__serena__replace_symbol_body"
|
||||
"mcp__serena__replace_symbol_body",
|
||||
"mcp__playwright__browser_fill_form"
|
||||
],
|
||||
"deny": [],
|
||||
"ask": []
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@
|
|||
:rail="miniVariant"
|
||||
:expand-on-hover="false"
|
||||
permanent
|
||||
:width="miniVariant ? 56 : 280"
|
||||
width="280"
|
||||
rail-width="56"
|
||||
class="enhanced-glass-drawer"
|
||||
>
|
||||
<!-- Enhanced Logo Section -->
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@
|
|||
:rail="miniVariant"
|
||||
:expand-on-hover="false"
|
||||
permanent
|
||||
:width="miniVariant ? 56 : 280"
|
||||
width="280"
|
||||
rail-width="56"
|
||||
class="enhanced-glass-drawer"
|
||||
>
|
||||
<!-- Enhanced Logo Section -->
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@
|
|||
:rail="miniVariant"
|
||||
:expand-on-hover="false"
|
||||
permanent
|
||||
:width="miniVariant ? 56 : 280"
|
||||
width="280"
|
||||
rail-width="56"
|
||||
class="enhanced-glass-drawer"
|
||||
>
|
||||
<!-- Logo Section with Enhanced Glass Effect -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue