You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| title |
status |
type |
priority |
created_at |
updated_at |
blocked_by |
| Implement error display component — consistent error state UI across all pages |
completed |
task |
low |
2026-03-10T23:32:11Z |
2026-03-10T23:32:20Z |
| quotesdb-kaat |
| quotesdb-wlpv |
|
The `quotesdb` UI is a Yew (Rust → Wasm) single-page app compiled by Trunk and hosted on Cloudflare Pages. It communicates with the backend API via `fetch` calls. Source lives in `src/bin/ui/`. Run with `trunk serve` for local development.
Implement a shared `ErrorDisplay` Yew component (`src/bin/ui/components/error_display.rs`) that renders a styled error message when an API call fails. Used on all pages. Accepts an `Option` error message prop — renders nothing when `None`.
- Resolve TRIAGE ticket 5e3e37 (CSS/styling approach) before adding class names.
- Do not use `panic!` or `unwrap` in component code — all errors should surface via this component.
- Render nothing (not an empty box) when the error is `None`.
From the `quotesdb/` directory:
trunk build
`feat(quotesdb): implement shared ErrorDisplay component`