Fix type errors

This commit is contained in:
2025-07-17 20:47:03 +02:00
parent 1362d0a289
commit 1156bc315e
43 changed files with 372 additions and 323 deletions

View File

@ -17,7 +17,7 @@ import SecretGroup from '@/components/secrets/SecretGroup.vue'
import SecretGroupTreeItem from '@/components/secrets/SecretGroupTreeItem.vue'
import SecretGroupTreeEntry from '@/components/secrets/SecretGroupTreeEntry.vue'
const props = defineProps<{ group: SecretGroup; except?: string }>()
const props = defineProps<{ group: ClientSecretGroup; except?: string }>()
const groupPath = toRef(() => props.group.path)
</script>