We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vite/svelte-warn prints this:
pagination-ellipsis.svelte:2:4 The value of 'aria-hidden' must be either 'true' or 'false'. It cannot be empty
https://github.com/huntabyte/shadcn-svelte/blob/main/sites/docs/src/lib/registry/default/ui/pagination/pagination-ellipsis.svelte#L13
The text was updated successfully, but these errors were encountered:
This is fixed on next. You can fix it in your code by adding =true
next
=true
<span aria-hidden="true" class={cn("flex h-9 w-9 items-center justify-center", className)} {...$$restProps} > <DotsHorizontal class="h-4 w-4" /> <span class="sr-only">More pages</span> </span>
Sorry, something went wrong.
fixes huntabyte#1510
c6b44a4
aria-hidden
aria-hidden="true"
pagination-ellipsis
Ah, I thought I checked next, but I forgot next isn't the default branch.
Successfully merging a pull request may close this issue.
Describe the bug
vite/svelte-warn prints this:
Reproduction
https://github.com/huntabyte/shadcn-svelte/blob/main/sites/docs/src/lib/registry/default/ui/pagination/pagination-ellipsis.svelte#L13
The text was updated successfully, but these errors were encountered: