We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66081b7 commit 15fffa6Copy full SHA for 15fffa6
src/lib/components/Messages/ErrorMessageAndReturnButton.svelte
@@ -17,11 +17,15 @@
17
>
18
<HeadingOne title="エラーが発生しました" />
19
20
- <Heading tag="h2" class="text-3xl mb-3 text-gray-900 dark:text-gray-300">
21
- {errorStatus}
+ <Heading
+ tag="h2"
22
+ class="text-3xl mb-3 text-gray-900 dark:text-gray-300"
23
+ aria-label="error status"
24
+ >
25
+ {errorStatus ?? ''}
26
</Heading>
27
- <p class="dark:text-gray-300">{errorMessage}</p>
28
+ <p class="dark:text-gray-300" aria-label="error messages">{errorMessage ?? ''}</p>
29
30
<div class="flex justify-center mt-6">
31
<Button href={returnUrl} color="primary" class="px-6">
0 commit comments