chore: correct spelling for 'dragable' (#4600)

This commit is contained in:
Netfan
2024-10-10 10:55:52 +08:00
committed by GitHub
parent 078f255e1a
commit ba539f6793
15 changed files with 23 additions and 23 deletions

View File

@@ -69,7 +69,7 @@ const tabsView = computed((): TabConfig[] => {
v-for="(tab, i) in tabsView"
:key="tab.key"
ref="tabRef"
:class="[{ 'is-active': tab.key === active, dragable: !tab.affixTab }]"
:class="[{ 'is-active': tab.key === active, draggable: !tab.affixTab }]"
:data-active-tab="active"
:data-index="i"
class="tabs-chrome__item draggable translate-all group relative -mr-3 flex h-full select-none items-center"

View File

@@ -75,7 +75,7 @@ const tabsView = computed((): TabConfig[] => {
:class="[
{
'is-active dark:bg-accent bg-primary/15': tab.key === active,
dragable: !tab.affixTab,
draggable: !tab.affixTab,
},
typeWithClass.content,
]"