File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
cloud/components/Views/Table Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -411,9 +411,12 @@ const Container = styled.div`
411
411
}
412
412
413
413
.table:not(.table--with-checkbox) {
414
- .table__header:first-child > div:first-child,
414
+ .table__header:first-child > div:first-child {
415
+ padding-left: 54px !important;
416
+ }
417
+
415
418
.table-row > div:first-child .navigation__item {
416
- padding-left: ${ ( { theme } ) => theme . sizes . spaces . md } px !important;
419
+ padding-left: 50px !important;
417
420
}
418
421
}
419
422
Original file line number Diff line number Diff line change 1
1
import { useState , useCallback } from 'react'
2
+ import { nodeEnv } from '../../../../cloud/lib/consts'
2
3
import { generateSecret } from '../../../../cloud/lib/utils/secret'
3
4
import { createStoreContext } from '../../utils/context'
4
5
@@ -57,7 +58,7 @@ const useToastStore = (): ToastStore => {
57
58
{
58
59
id : generateSecret ( ) ,
59
60
createdAt : new Date ( ) ,
60
- title : process . env . NODE_ENV === 'development' ? title : undefined ,
61
+ title : nodeEnv === 'development' ? title : undefined ,
61
62
type : 'error' ,
62
63
description,
63
64
} ,
You can’t perform that action at this time.
0 commit comments