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 Modal content
<template #alert v-if="alertOpen"> <template #alert v-if="alertOpen">
<fw-alert> <Alert>
Alert content Alert content
<template #actions> <template #actions>
<Button autofocus @click="alertOpen = false">Close alert</Button> <Button autofocus @click="alertOpen = false">Close alert</Button>
</template> </template>
</fw-alert> </Alert>
</template> </template>
</Modal> </Modal>
``` ```