Skip to content

Commit bfbdf37

Browse files
committed
fix: eslint warnings
1 parent 9b008a4 commit bfbdf37

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

docs/app/components/AsideMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<div class="menu-controls">
99
<button
1010
class="expand-all-btn"
11-
@click="toggleAllSections"
1211
:title="isAllExpanded ? 'Colapsar tudo' : 'Expandir tudo'"
12+
@click="toggleAllSections"
1313
>
1414
{{ isAllExpanded ? '⊖' : '⊕' }}
1515
</button>

docs/app/components/AsideMenuItems.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
v-if="index !== items.length - 1"
5757
class="section-separator"
5858
>
59-
<div class="separator-line"></div>
59+
<div class="separator-line" />
6060
</div>
6161
</div>
6262
</div>
@@ -132,7 +132,6 @@ const onLeave = (el: Element) => {
132132
position: relative;
133133
}
134134
135-
136135
.section-toggle {
137136
@apply flex items-center justify-center w-6 h-6;
138137
}

docs/app/composables/useAccordion.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,3 @@ export const useAccordion = () => {
3232
closeAllSections,
3333
}
3434
}
35-

0 commit comments

Comments
 (0)