Open
Conversation
A11y: - Add aria-label to the 4 icon-only interactive controls (docs link, theme toggle, orderbook info, event-feed scroll-to-top) so screen readers announce a name instead of 'button'. Tooltips do not expose an accessible name on focus. Viewport: - Replace 100vh with 100dvh in AppLayout, DashboardPage, SwapDetailPage, NotFoundPage so mobile browser address-bar chrome doesn't clip the bottom of full-height pages. Done globally, not just in AppLayout. Extracted from upstream PR entrius#15 — the uncontroversial a11y + viewport slice, without the bundled error-boundary / retry / SSE-reconnect / memoization changes.
6af854d to
8bb393d
Compare
Author
|
cc @LandynDev |
nightmare0329
added a commit
to nightmare0329/allways-ui
that referenced
this pull request
Apr 18, 2026
…back Issue entrius#33 — refactor(OrderbookDepth): hoist BtcIcon, TaoIcon, AssetIcon to module scope so they are not recreated on every parent render. Each icon calls useTheme() internally instead of closing over the parent component's theme variables. Issue entrius#31 — a11y: add aria-label to 4 icon-only interactive controls: - Docs link button (aria-label="Documentation") - Theme toggle button (dynamic: "Switch to dark/light mode") - Orderbook info button (aria-label="Orderbook depth information") - EventFeed scroll-to-top button (aria-label="Scroll to top of event feed") Issue entrius#36 — fix: add QueryError component with retry button and wire it into all four dashboard panels (StatsPanel, MinerRatesTable, OrderbookDepth, EventFeed). Panels now render a QueryError with a refetch button instead of staying on a shimmer skeleton when useApiQuery errors. Closes entrius#31, entrius#33, entrius#36
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds descriptive aria-label to the 4 icon-only interactive controls (docs link, theme toggle, orderbook info, event-feed scroll-to-top) so screen readers announce a name instead of 'button'. Tooltips do not expose an accessible name on focus.
Fixes #30