Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: finish style updates
  • Loading branch information
Parkreiner committed Jul 2, 2024
commit 71692b60e4d3bce65cf57a2de05a02a9d0926ef3
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ export const DownloadLogsDialog: FC<DownloadLogsDialogProps> = ({

{!isWorkspaceHealthy && isLoadingFiles && (
<Alert severity="warning">
Your workspace is unhealthy. Some logs may be unavailable.
Your workspace is unhealthy. Some logs may be unavailable for
download.
</Alert>
)}

Expand Down Expand Up @@ -200,11 +201,7 @@ const DownloadingItem: FC<DownloadingItemProps> = ({ file, giveUpTimeMs }) => {
!isWaiting && { color: theme.palette.text.disabled },
]}
>
<span css={styles.listItemPrimaryBaseName}>
{/* {baseName} */}
WWWWWWWWWWWWWWWWWWWWWWW
</span>

<span css={styles.listItemPrimaryBaseName}>{baseName}</span>
<span css={styles.listItemPrimaryFileExtension}>.{fileExtension}</span>
</span>

Expand Down Expand Up @@ -286,7 +283,9 @@ const styles = {
fontWeight: 500,
color: theme.palette.text.primary,
display: "flex",
flexFlow: "no nowrap",
flexFlow: "row nowrap",
columnGap: 0,
overflow: "hidden",
}),

listItemPrimaryBaseName: {
Expand All @@ -301,6 +300,7 @@ const styles = {
},

listItemSecondary: {
flexShrink: 0,
fontSize: 14,
whiteSpace: "nowrap",
},
Expand All @@ -310,16 +310,6 @@ const styles = {
flexFlow: "row nowrap",
alignItems: "center",
columnGap: "4px",

"& > span": {
maxHeight: "fit-content",
display: "flex",
alignItems: "center",
color: theme.palette.error.light,
},

"& > p": {
opacity: "80%",
},
color: theme.palette.text.disabled,
}),
} satisfies Record<string, Interpolation<Theme>>;