Skip to content

Commit

Permalink
small ui fixes to the serve page (#46599)
Browse files Browse the repository at this point in the history
Fixes visual glitch with the list view.
  • Loading branch information
alanwguo authored Jul 13, 2024
1 parent f123607 commit 9c739bc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,13 @@ export const CodeDialogButton = ({

return (
<React.Fragment>
<Link component="button" onClick={handleConfigClick}>
<Link
sx={{
whiteSpace: "nowrap",
}}
component="button"
onClick={handleConfigClick}
>
{buttonText}
</Link>
{showConfigDialog && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const ServeDeploymentsListPage = () => {
page={constrainedPage}
onChange={(e, pageNo) => setPage("pageNo", pageNo)}
/>
<Table sx={{ tableLayout: "fixed" }}>
<Table>
<TableHead>
<TableRow>
{columns.map(({ label, helpInfo, width }) => (
Expand Down

0 comments on commit 9c739bc

Please sign in to comment.