fix(ui-docs): Correct code example

This commit is contained in:
ArneBo 2025-01-22 13:24:12 +01:00
parent 1a2118fdcf
commit 090de717ad
1 changed files with 2 additions and 2 deletions

View File

@ -121,13 +121,13 @@ You can nest [Funkwhale alerts](./alert) to visually highlight content within th
Modal content
<template #alert v-if="alertOpen">
<fw-alert>
<Alert>
Alert content
<template #actions>
<Button autofocus @click="alertOpen = false">Close alert</Button>
</template>
</fw-alert>
</Alert>
</template>
</Modal>
```