We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 963ab10 + 7c23348 commit 6059f62Copy full SHA for 6059f62
frontend/src/components/activity/Activity.stories.tsx
@@ -64,6 +64,7 @@ const makeActivity = (activity: Partial<Activity>): Activity => ({
64
id: 'id',
65
location: 'window',
66
content: 'Activity Content',
67
+ title: activity.title,
68
...activity,
69
});
70
frontend/src/components/activity/Activity.tsx
@@ -328,6 +328,7 @@ export function SingleActivityRenderer({
328
<ActivityContext.Provider value={activity}>
329
<Box
330
role="complementary"
331
+ aria-label={typeof title === 'string' ? title : undefined}
332
sx={{
333
display: minimized && !isOverview ? 'none' : undefined,
334
gridColumn: '2 / 3',
0 commit comments