Work
Replace {
{value={get(item, 'status.name', '-')}}
With <NoValue> component
What to update
See attached document to identify impacted eusage development ui-modules
Background
From Zak: I recently ran across this line:
value={
get(item, 'status.name', '-')}
which basically says “use item.status.name if it’s available, or - if it’s not”.
We have a <NoValue> component that will render this in an a11y-friendly way, but code like that above is more common (100s in platform-core apps, e.g.).
Acceptance criteria
- Replace item, status.name '-' with <No Value> component when it is applicable
- Verify applicable modules do not contain item, status.name '-"
|