Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

fix the issue: text is not displayed completely when searching in the search space/config/log monaco editor #3492

Merged
merged 1 commit into from
Apr 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion ts/webui/src/components/Overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class Overview extends React.Component<{}, OverviewState> {
const minActive = metricGraphMode === 'min' ? 'active' : '';
return (
<div className='overview'>
<div className='wrapper'>
<div className='overviewWrapper'>
{/* exp params */}
<div className='overviewBasicInfo'>
<TitleContext.Provider value={{ text: 'Experiment', icon: 'AutoRacing' }}>
Expand Down
2 changes: 1 addition & 1 deletion ts/webui/src/static/style/overview/overview.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $boxPadding: 24px;
$boxBorderRadius: 5px;
$boxGapPadding: 10px;

.wrapper {
.overviewWrapper {
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-auto-rows: 102px;
Expand Down