From 2523fbc54fc2be6c7e50e8f31f5b6adb7796048a Mon Sep 17 00:00:00 2001 From: KDSBrowne Date: Sat, 15 Jul 2023 18:20:46 +0000 Subject: [PATCH] convert first column from td to th / add scope & label --- .../src/components/StatusTable.jsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/bbb-learning-dashboard/src/components/StatusTable.jsx b/bbb-learning-dashboard/src/components/StatusTable.jsx index bd2923987f..50c7faa0bc 100644 --- a/bbb-learning-dashboard/src/components/StatusTable.jsx +++ b/bbb-learning-dashboard/src/components/StatusTable.jsx @@ -204,7 +204,7 @@ class StatusTable extends React.Component { { hasSlides ? ( - + { periods.map((period) => { const { slide, start, end } = period; const padding = isRTL ? 'paddingLeft' : 'paddingRight'; @@ -260,7 +260,14 @@ class StatusTable extends React.Component { }) .map((user) => ( - +
@@ -270,7 +277,7 @@ class StatusTable extends React.Component {

{user.name}

- + { periods.map((period) => { const boundaryLeft = period.start; const boundaryRight = period.end;