Skip to content

Commit

Permalink
fix(admin-ui): table ui issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mjatin-dev committed Jul 12, 2022
1 parent c0df9a9 commit 2b14a5f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion admin-ui/app/routes/Dashboards/Table/DashboardTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ export default function BasicTable() {
<TableCell
align="left"
className={
key % 2 !== 0 ? classes.standardText : classes.whiteText
key % 2 !== 0
? `${classes.standardText} ${classes.roundedLeft}`
: classes.whiteText
}
>
{row?.displayName || ''}
Expand Down

0 comments on commit 2b14a5f

Please sign in to comment.