diff --git a/cvat-ui/src/components/cvat-app.tsx b/cvat-ui/src/components/cvat-app.tsx index d9dcc8a3..15190f34 100644 --- a/cvat-ui/src/components/cvat-app.tsx +++ b/cvat-ui/src/components/cvat-app.tsx @@ -139,7 +139,7 @@ export default class CVATApplication extends React.PureComponent { /> ), duration: null, - description: error.length > 200 ? '' : error, + description: error.length > 200 ? 'Open console to details (F12, Console tab)' : error, }); console.error(error); diff --git a/cvat-ui/src/components/task-page/job-list.tsx b/cvat-ui/src/components/task-page/job-list.tsx index ab738b38..77f75b4a 100644 --- a/cvat-ui/src/components/task-page/job-list.tsx +++ b/cvat-ui/src/components/task-page/job-list.tsx @@ -136,7 +136,7 @@ export default function JobListComponent(props: Props): JSX.Element { for (const job of taskInstance.jobs) { serialized += `Job #${job.id}`.padEnd(`${latestJob.id}`.length + 6, ' '); serialized += `: ${baseURL}/?id=${job.id}` - .padEnd(`${latestJob.id}`.length + baseURL.length + 7, ' '); + .padEnd(`${latestJob.id}`.length + baseURL.length + 8, ' '); serialized += `: [${job.startFrame}-${job.stopFrame}]` .padEnd(`${latestJob.startFrame}${latestJob.stopFrame}`.length + 5, ' ');