This repository was archived by the owner on Nov 10, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
src/routes/safe/components/Settings/Delegates Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ export const generateColumns = (): Array<DelegatesTableColumn> => {
2222 width : 170 ,
2323 custom : false ,
2424 align : 'left' ,
25+ static : true ,
2526 }
2627
2728 const delegatorColumn = {
@@ -30,18 +31,21 @@ export const generateColumns = (): Array<DelegatesTableColumn> => {
3031 width : 170 ,
3132 custom : false ,
3233 align : 'left' ,
34+ static : true ,
3335 }
3436
3537 const labelColumn = {
3638 id : DELEGATE_LABEL_ID ,
3739 label : 'Label' ,
3840 custom : false ,
41+ static : true ,
3942 }
4043
4144 const actionsColumn = {
4245 id : ACTIONS_ID ,
4346 label : '' ,
4447 custom : true ,
48+ static : true ,
4549 }
4650
4751 return [ delegateColumn , delegatorColumn , labelColumn , actionsColumn ]
Original file line number Diff line number Diff line change @@ -184,7 +184,14 @@ const Delegates = (): ReactElement => {
184184 </ ButtonLink >
185185 < pre > { JSON . stringify ( delegatesList , undefined , 2 ) } </ pre >
186186 < TableContainer >
187- < Table columns = { columns } data = { delegatesList } defaultFixed disableLoadingOnEmptyTable disablePagination >
187+ < Table
188+ columns = { columns }
189+ data = { delegatesList }
190+ noBorder
191+ defaultFixed
192+ disableLoadingOnEmptyTable
193+ disablePagination
194+ >
188195 { ( data ) =>
189196 data . map ( ( row , index ) => {
190197 const hideBorderBottom = index >= 3 && index === data . size - 1 && classes . noBorderBottom
You can’t perform that action at this time.
0 commit comments