Skip to content

Commit

Permalink
Fix input overflow in new home page enabled
Browse files Browse the repository at this point in the history
Signed-off-by: Lin Wang <[email protected]>
  • Loading branch information
wanglam committed Sep 26, 2024
1 parent 3d470f9 commit 31a10e2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion public/components/monitoring/monitoring_page_header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ export const MonitoringPageHeader = ({
if (useNewPageHeader) {
return [
{
renderComponent: <RefreshInterval onRefresh={onRefresh} />,
renderComponent: (
<div style={{ width: 227 }}>
<RefreshInterval onRefresh={onRefresh} />
</div>
),
},
];
}
Expand Down

0 comments on commit 31a10e2

Please sign in to comment.