Unverified Commit b63b5246 authored by Yan Ni's avatar Yan Ni Committed by GitHub
Browse files

Merge pull request #1911 from leckie-chn/v1.3-rc0

merge v1.3 (conflict resolved) back to master
parents 1b219414 87dc3cdc
...@@ -28,12 +28,11 @@ class SuccessTable extends React.Component<SuccessTableProps, {}> { ...@@ -28,12 +28,11 @@ class SuccessTable extends React.Component<SuccessTableProps, {}> {
{ {
title: 'Trial No.', title: 'Trial No.',
dataIndex: 'sequenceId', dataIndex: 'sequenceId',
width: 140,
className: 'tableHead' className: 'tableHead'
}, { }, {
title: 'ID', title: 'ID',
dataIndex: 'id', dataIndex: 'id',
width: 60, width: 80,
className: 'tableHead leftTitle', className: 'tableHead leftTitle',
render: (text: string, record: TableRecord): React.ReactNode => { render: (text: string, record: TableRecord): React.ReactNode => {
return ( return (
......
...@@ -517,7 +517,7 @@ def manage_stopped_experiment(args, mode): ...@@ -517,7 +517,7 @@ def manage_stopped_experiment(args, mode):
experiment_id = None experiment_id = None
#find the latest stopped experiment #find the latest stopped experiment
if not args.id: if not args.id:
print_error('Please set experiment id! \nYou could use \'nnictl {0} {id}\' to {0} a stopped experiment!\n' \ print_error('Please set experiment id! \nYou could use \'nnictl {0} id\' to {0} a stopped experiment!\n' \
'You could use \'nnictl experiment list --all\' to show all experiments!'.format(mode)) 'You could use \'nnictl experiment list --all\' to show all experiments!'.format(mode))
exit(1) exit(1)
else: else:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment