File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ const TorrentList = ({
102102 ) }
103103 </ Text >
104104 ) ,
105- gridWidth : "2fr" ,
105+ gridWidth : "minmax(150px, 2fr) " ,
106106 } ,
107107 {
108108 header : `${ getLocaleString ( "uploadCategory" ) } ` ,
@@ -118,7 +118,7 @@ const TorrentList = ({
118118 </ Text >
119119 ) ;
120120 } ,
121- gridWidth : "1fr" ,
121+ gridWidth : "minmax(75px, 1fr) " ,
122122 } ,
123123 {
124124 header : `${ getLocaleString ( "torrSeeders" ) } ` ,
@@ -184,7 +184,11 @@ const TorrentList = ({
184184 header : `${ getLocaleString ( "torrUploaded" ) } ` ,
185185 accessor : "created" ,
186186 cell : ( { value } ) => (
187- < Text > { moment ( value ) . format ( `${ getLocaleString ( "userUserSinceTime" ) } ` ) } </ Text >
187+ < Text >
188+ { moment ( value ) . format (
189+ `${ getLocaleString ( "userUserSinceTime" ) } `
190+ ) }
191+ </ Text >
188192 ) ,
189193 gridWidth : "140px" ,
190194 rightAlign : true ,
@@ -235,7 +239,8 @@ const TorrentList = ({
235239 < ChevronsRight size = { 24 } />
236240 </ Button >
237241 < Text color = "grey" >
238- { total . toLocaleString ( ) } { getLocaleString ( "torrResults" ) } — { getLocaleString ( "torrPage" ) } { page + 1 } { getLocaleString ( "torrOf" ) } { " " }
242+ { total . toLocaleString ( ) } { getLocaleString ( "torrResults" ) } —{ " " }
243+ { getLocaleString ( "torrPage" ) } { page + 1 } { getLocaleString ( "torrOf" ) } { " " }
239244 { ( maxPage + 1 ) . toLocaleString ( ) }
240245 </ Text >
241246 </ Box >
You can’t perform that action at this time.
0 commit comments