File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ const filenameColumns: ColumnDef<Filename>[] = [
27
27
accessorKey : "path" ,
28
28
header : "Filename" ,
29
29
cell : ( { row } ) => {
30
- return < span className = "line-clamp-1 text-xs" > { row . original . path } </ span >
30
+ return < span className = "break-all line-clamp-1 text-xs" > { row . original . path } </ span >
31
31
} ,
32
32
} ,
33
33
]
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ const getFileColumns = ({ onSelectedFiles }: { onSelectedFiles: (row: Row<FileTr
48
48
: < ChevronRight size = "16" color = "#777" > </ ChevronRight > }
49
49
</ button >
50
50
) }
51
- { row . original . name }
51
+ < span className = "break-all line-clamp-1" > { row . original . name } </ span >
52
52
</ div >
53
53
)
54
54
}
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export default function DownloadDetails({ selectedDownloads }: { selectedDownloa
57
57
</ div >
58
58
< div className = "flex flex-row" >
59
59
< div className = "basis-1/4" > { t ( 'Name' ) } </ div >
60
- < div className = "basis-3/4" > { download ?. name } </ div >
60
+ < div className = "basis-3/4 break-all line-clamp-1 " > { download ?. name } </ div >
61
61
</ div >
62
62
< div className = "flex flex-row" >
63
63
< div className = "basis-1/4" > { t ( 'Status' ) } </ div >
@@ -77,7 +77,7 @@ export default function DownloadDetails({ selectedDownloads }: { selectedDownloa
77
77
</ div >
78
78
< div className = "flex flex-row" >
79
79
< div className = "basis-1/4" > { t ( 'Destination' ) } </ div >
80
- < div className = "basis-3/4" > { download ?. destination } </ div >
80
+ < div className = "basis-3/4 break-all line-clamp-1 " > { download ?. destination } </ div >
81
81
</ div >
82
82
< div className = "flex flex-row" >
83
83
< div className = "basis-1/4" > { t ( 'Ratio' ) } </ div >
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ const getFileColumns = ({ onSelectedFiles }: { onSelectedFiles: (row: Row<FileTr
30
30
: < ChevronRight size = "16" color = "#777" > </ ChevronRight > }
31
31
</ button >
32
32
) }
33
- { row . original . name }
33
+ < span className = "break-all line-clamp-1" > { row . original . name } </ span >
34
34
</ div >
35
35
)
36
36
}
You can’t perform that action at this time.
0 commit comments