diff --git a/Composer/packages/client/src/pages/home/RecentBotList.tsx b/Composer/packages/client/src/pages/home/RecentBotList.tsx index 8ef78e2581..5d7e8b6a68 100644 --- a/Composer/packages/client/src/pages/home/RecentBotList.tsx +++ b/Composer/packages/client/src/pages/home/RecentBotList.tsx @@ -33,6 +33,7 @@ export function RecentBotList(props: RecentBotListProps): JSX.Element { { key: 'column1', name: formatMessage('Name'), + role: 'columnheader', fieldName: 'name', minWidth: 150, maxWidth: 200, @@ -41,7 +42,7 @@ export function RecentBotList(props: RecentBotListProps): JSX.Element { data: 'string', onRender: (item) => { return ( -
+
onItemChosen(item)} @@ -56,6 +57,7 @@ export function RecentBotList(props: RecentBotListProps): JSX.Element { { key: 'column2', name: formatMessage('Location'), + role: 'columnheader', fieldName: 'path', minWidth: 200, maxWidth: 400, @@ -63,10 +65,11 @@ export function RecentBotList(props: RecentBotListProps): JSX.Element { data: 'string', onRender: (item) => { return ( -
+
{item.path} @@ -79,6 +82,7 @@ export function RecentBotList(props: RecentBotListProps): JSX.Element { { key: 'column3', name: formatMessage('Date modified'), + role: 'columnheader', fieldName: 'dateModifiedValue', minWidth: 60, maxWidth: 70, @@ -86,10 +90,11 @@ export function RecentBotList(props: RecentBotListProps): JSX.Element { data: 'number', onRender: (item) => { return ( -
+
{calculateTimeDiff(item.dateModified)}