Skip to content

Commit

Permalink
Merge pull request #388 from ownego/fix/tabs-button-classname
Browse files Browse the repository at this point in the history
Fix: Tabs button classname in More items disclosure
  • Loading branch information
juzser authored Aug 12, 2024
2 parents 5691cf6 + 82baa57 commit a8f9343
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Tabs/components/Item/Item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ watch(
},
);
const classname = computed(() => classNames(styles.Item));
const buttonClass = computed(() => classNames(styles.Item));
const sharedProps = computed(() => ({
id: props.id,
className: classname,
className: buttonClass.value,
'aria-selected': false,
'aria-label': props.accessibilityLabel,
}));
Expand Down

0 comments on commit a8f9343

Please sign in to comment.