Skip to content

Commit

Permalink
[EPMDEDP-12414]: fix: Fix crash when downgrading to 0.18.0
Browse files Browse the repository at this point in the history
Change-Id: I1eb2ace7af6546a28432d6f8c41c07e9126bf7bb
  • Loading branch information
callmevladik committed Aug 14, 2023
1 parent 1f1434a commit 994a291
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 48 deletions.
7 changes: 3 additions & 4 deletions src/components/Table/components/TableHead/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ export const TableHead = ({
colSpan={colSpan || 1}
style={{
color: theme.palette.text.primary,
backgroundColor:
theme.palette.tables.head.background,
backgroundColor: theme.palette.background.paper,
padding: `${theme.typography.pxToRem(
8
)} ${theme.typography.pxToRem(16)}`,
Expand All @@ -123,7 +122,7 @@ export const TableHead = ({
padding="checkbox"
style={{
color: theme.palette.text.primary,
backgroundColor: theme.palette.tables.head.background,
backgroundColor: theme.palette.background.paper,
}}
>
<Checkbox
Expand Down Expand Up @@ -155,7 +154,7 @@ export const TableHead = ({
align={textAlign}
style={{
color: theme.palette.text.primary,
backgroundColor: theme.palette.tables.head.background,
backgroundColor: theme.palette.background.paper,
}}
>
<Grid container spacing={1} alignItems={'center'} wrap={'nowrap'}>
Expand Down
44 changes: 0 additions & 44 deletions src/pages/edp-stage-details/components/Applications/styles.ts

This file was deleted.

0 comments on commit 994a291

Please sign in to comment.