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:
Prospector
2026-05-02 09:33:19 -07:00
committed by GitHub
parent c2359275ff
commit be618d96f4
10 changed files with 94 additions and 79 deletions

View File

@@ -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]">