fix: 404 when returning to collections dashboard (#5963)
* fix 404 when returning to collections dashboard, fix a couple hydration issues * fix clippy * fmt * fix hydration issue on revenue page * fix transfer history page error --------- Co-authored-by: aecsocket <aecsocket@tutanota.com>
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
<script setup lang="ts">
|
||||
import { Menu } from 'floating-vue'
|
||||
import { useId } from 'vue'
|
||||
|
||||
import { TagItem, TagTagItem } from '../base'
|
||||
|
||||
const id = useId()
|
||||
|
||||
defineProps<{
|
||||
tags: string[]
|
||||
}>()
|
||||
@@ -13,7 +16,7 @@ defineOptions({
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Menu :delay="{ hide: 50, show: 0 }" no-auto-focus>
|
||||
<Menu :delay="{ hide: 50, show: 0 }" no-auto-focus :aria-id="id">
|
||||
<TagItem v-if="tags.length > 0" v-bind="$attrs" tabindex="0"> +{{ tags.length }} </TagItem>
|
||||
<template #popper>
|
||||
<div class="flex gap-1 flex-wrap max-w-[20rem]">
|
||||
|
||||
Reference in New Issue
Block a user