Skip to content

Commit f62a978

Browse files
committed
fix: eslint complaint
1 parent cec08e6 commit f62a978

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

resources/js/layouts/app/HeaderLayout.vue

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,9 @@ const toggleMobileUserMenu = (event) => {
7676
</div>
7777
</template>
7878
</Drawer>
79-
<ScrollTop :buttonProps="{
80-
class: 'fixed! right-4! bottom-4! md:right-8! md:bottom-8! z-[1000]!',
81-
rounded: true,
82-
raised: true,
83-
}" />
79+
<ScrollTop
80+
:buttonProps="{ class: 'fixed! right-4! bottom-4! md:right-8! md:bottom-8! z-[1000]!', rounded: true, raised: true }"
81+
/>
8482
</Teleport>
8583
</ClientOnly>
8684
<div class="min-h-screen">

resources/js/layouts/app/SidebarLayout.vue

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,9 @@ const toggleMobileUserMenu = (event) => {
7474
</div>
7575
</template>
7676
</Drawer>
77-
<ScrollTop :buttonProps="{
78-
class: 'fixed! right-4! bottom-4! md:right-8! md:bottom-8! z-[1000]!',
79-
rounded: true,
80-
raised: true,
81-
}" />
77+
<ScrollTop
78+
:buttonProps="{ class: 'fixed! right-4! bottom-4! md:right-8! md:bottom-8! z-[1000]!', rounded: true, raised: true }"
79+
/>
8280
</Teleport>
8381
</ClientOnly>
8482

0 commit comments

Comments
 (0)