diff --git a/SharePointFramework/ProjectWebParts/src/components/ProjectStatus/Commands/useToolbarItems.tsx b/SharePointFramework/ProjectWebParts/src/components/ProjectStatus/Commands/useToolbarItems.tsx index 74e419a59..964e15f2b 100644 --- a/SharePointFramework/ProjectWebParts/src/components/ProjectStatus/Commands/useToolbarItems.tsx +++ b/SharePointFramework/ProjectWebParts/src/components/ProjectStatus/Commands/useToolbarItems.tsx @@ -95,7 +95,11 @@ export function useToolbarItems() { .setOnClick(() => { window.open(state.selectedReport?.snapshotUrl, '_self') }), - new ListMenuItem(state.selectedReport ? formatDate(state.selectedReport.created) : strings.NoReportsFoundMessage) + new ListMenuItem( + state.selectedReport + ? formatDate(state.selectedReport.created) + : strings.NoReportsFoundMessage + ) .setIcon('History') .setWidth('fit-content') .setStyle({ minWidth: '145px' }) diff --git a/SharePointFramework/ProjectWebParts/src/components/ProjectStatus/Sections/Sections.tsx b/SharePointFramework/ProjectWebParts/src/components/ProjectStatus/Sections/Sections.tsx index c3db998f5..3faa055b2 100644 --- a/SharePointFramework/ProjectWebParts/src/components/ProjectStatus/Sections/Sections.tsx +++ b/SharePointFramework/ProjectWebParts/src/components/ProjectStatus/Sections/Sections.tsx @@ -15,13 +15,15 @@ export const Sections: FC = () => { return (