|
|
|
@ -51,20 +51,20 @@ function JobListComponent(props: Props & RouteComponentProps): JSX.Element {
|
|
|
|
key: 'job',
|
|
|
|
key: 'job',
|
|
|
|
render: (id: number): JSX.Element => (
|
|
|
|
render: (id: number): JSX.Element => (
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<Button type='link' href={`${baseURL}/?id=${id}`}>{`Job #${id}`}</Button>
|
|
|
|
<Button
|
|
|
|
|
|
|
|
type='link'
|
|
|
|
|
|
|
|
onClick={(): void => {
|
|
|
|
|
|
|
|
push(`/tasks/${taskId}/jobs/${id}`);
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
{`Job #${id}`}
|
|
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Tooltip title='Beta version of new UI written in React. It is to get
|
|
|
|
<Tooltip title='Old version of UI is deprecated and will be removed from
|
|
|
|
acquainted only, we do not recommend use it to annotation
|
|
|
|
new versions of UI. We still recomend it only if you use
|
|
|
|
process because it lacks of some features and can be unstable.'
|
|
|
|
specific features from it like cuboids annotation.'
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<Button
|
|
|
|
<Button type='link' href={`${baseURL}/?id=${id}`}>Old UI</Button>
|
|
|
|
type='link'
|
|
|
|
|
|
|
|
onClick={(): void => {
|
|
|
|
|
|
|
|
push(`/tasks/${taskId}/jobs/${id}`);
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
Try new UI
|
|
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
</Tooltip>
|
|
|
|
</Tooltip>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|