Skip to content
New issue

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

fix(edit): change wrong aria-label and add label to preview div #1797

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -469,7 +469,7 @@ function TileCard({
}
addToast(`${tile.name} fjernet!`)
}}
aria-label="Slett stoppested"
aria-label="Fjern stoppested"
type="button"
>
<DeleteIcon />
6 changes: 5 additions & 1 deletion tavla/app/(admin)/edit/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -84,7 +84,11 @@ export default async function EditPage(props: TProps) {
/>

<TileList board={board} />
<div data-theme={board.theme ?? 'dark'} className="pt-8">
<div
data-theme={board.theme ?? 'dark'}
className="pt-8"
aria-label="Forhåndsvisning av Tavla"
>
<Preview board={board} organization={organization} />
</div>
</div>