@@ -147,7 +147,8 @@ export const DownloadLogsDialog: FC<DownloadLogsDialogProps> = ({
147
147
148
148
{ ! isWorkspaceHealthy && isLoadingFiles && (
149
149
< Alert severity = "warning" >
150
- Your workspace is unhealthy. Some logs may be unavailable.
150
+ Your workspace is unhealthy. Some logs may be unavailable for
151
+ download.
151
152
</ Alert >
152
153
) }
153
154
@@ -200,11 +201,7 @@ const DownloadingItem: FC<DownloadingItemProps> = ({ file, giveUpTimeMs }) => {
200
201
! isWaiting && { color : theme . palette . text . disabled } ,
201
202
] }
202
203
>
203
- < span css = { styles . listItemPrimaryBaseName } >
204
- { /* {baseName} */ }
205
- WWWWWWWWWWWWWWWWWWWWWWW
206
- </ span >
207
-
204
+ < span css = { styles . listItemPrimaryBaseName } > { baseName } </ span >
208
205
< span css = { styles . listItemPrimaryFileExtension } > .{ fileExtension } </ span >
209
206
</ span >
210
207
@@ -286,7 +283,9 @@ const styles = {
286
283
fontWeight : 500 ,
287
284
color : theme . palette . text . primary ,
288
285
display : "flex" ,
289
- flexFlow : "no nowrap" ,
286
+ flexFlow : "row nowrap" ,
287
+ columnGap : 0 ,
288
+ overflow : "hidden" ,
290
289
} ) ,
291
290
292
291
listItemPrimaryBaseName : {
@@ -301,6 +300,7 @@ const styles = {
301
300
} ,
302
301
303
302
listItemSecondary : {
303
+ flexShrink : 0 ,
304
304
fontSize : 14 ,
305
305
whiteSpace : "nowrap" ,
306
306
} ,
@@ -310,16 +310,6 @@ const styles = {
310
310
flexFlow : "row nowrap" ,
311
311
alignItems : "center" ,
312
312
columnGap : "4px" ,
313
-
314
- "& > span" : {
315
- maxHeight : "fit-content" ,
316
- display : "flex" ,
317
- alignItems : "center" ,
318
- color : theme . palette . error . light ,
319
- } ,
320
-
321
- "& > p" : {
322
- opacity : "80%" ,
323
- } ,
313
+ color : theme . palette . text . disabled ,
324
314
} ) ,
325
315
} satisfies Record < string , Interpolation < Theme > > ;
0 commit comments