@@ -20,7 +20,7 @@ const transaction_columns: TColumn[] = [
20
20
21
21
/* TODO: Add back account & balance when we have support from transaction store */
22
22
const result_columns : TColumn [ ] = [
23
- { key : 'account' , label : localize ( 'Account' ) } ,
23
+ { key : 'account' , label : localize ( 'Account' ) , extra_class : '--grow-mid' } ,
24
24
{ key : 'no_of_runs' , label : localize ( 'No. of runs' ) } ,
25
25
{ key : 'total_stake' , label : localize ( 'Total stake' ) } ,
26
26
{ key : 'total_payout' , label : localize ( 'Total payout' ) } ,
@@ -57,8 +57,8 @@ const TransactionDetailsDesktop = observer(() => {
57
57
} , [ ] ) ;
58
58
59
59
// Calculate xaxis and yaxis to center the modal on open
60
- const modalWidth = 1034 ;
61
- const modalHeight = 800 ;
60
+ const modalWidth = 882 ;
61
+ const modalHeight = 404 ;
62
62
const xaxis = ( screenDimensions . width - modalWidth ) / 2 ;
63
63
const yAxisValue = ( screenDimensions . height - modalHeight ) / 2 ;
64
64
const yaxis = yAxisValue >= 0 ? yAxisValue : 0 ;
@@ -71,6 +71,7 @@ const TransactionDetailsDesktop = observer(() => {
71
71
minWidth = { modalWidth }
72
72
onCloseDraggable = { ( ) => toggleTransactionDetailsModal ( false ) }
73
73
width = { modalWidth }
74
+ height = { modalHeight }
74
75
xaxis = { xaxis }
75
76
yaxis = { yaxis }
76
77
header_title = { 'Transactions detailed summary' }
0 commit comments