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

fix overview page table trialId style #1875

Merged
merged 3 commits into from
Dec 30, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 2 additions & 1 deletion src/webui/src/components/Modal/Compare.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ class Compare extends React.Component<CompareProps, {}> {
},
yAxis: {
type: 'value',
name: 'Metric'
name: 'Metric',
scale: true
},
series: trialIntermediate
};
Expand Down
3 changes: 1 addition & 2 deletions src/webui/src/components/overview/SuccessTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,11 @@ class SuccessTable extends React.Component<SuccessTableProps, {}> {
{
title: 'Trial No.',
dataIndex: 'sequenceId',
width: 140,
className: 'tableHead'
}, {
title: 'ID',
dataIndex: 'id',
width: 60,
width: 80,
className: 'tableHead leftTitle',
render: (text: string, record: TableRecord): React.ReactNode => {
return (
Expand Down