Forgot your password?
diff --git a/cvat-ui/src/components/model-runner-modal/detector-runner.tsx b/cvat-ui/src/components/model-runner-modal/detector-runner.tsx
index d0c4a582..8a000e1a 100644
--- a/cvat-ui/src/components/model-runner-modal/detector-runner.tsx
+++ b/cvat-ui/src/components/model-runner-modal/detector-runner.tsx
@@ -111,7 +111,9 @@ function DetectorRunner(props: Props): JSX.Element {
>
{labels.map(
(label: string): JSX.Element => (
- {label}
+
+ {label}
+
),
)}
@@ -121,7 +123,7 @@ function DetectorRunner(props: Props): JSX.Element {
return (
-
+
Model:
@@ -155,7 +159,7 @@ function DetectorRunner(props: Props): JSX.Element {
const label = task.labels.filter((_label: any): boolean => _label.name === mapping[modelLabel])[0];
const color = label ? label.color : consts.NEW_LABEL_COLOR;
return (
-
+
{modelLabel}
@@ -179,22 +183,14 @@ function DetectorRunner(props: Props): JSX.Element {
})}
{isDetector && !!taskLabels.length && !!modelLabels.length && (
<>
-
+
- {renderSelector(
- match.model || '',
- 'Model labels',
- modelLabels,
- (modelLabel: string) => updateMatch(modelLabel, null),
- )}
+ {renderSelector(match.model || '', 'Model labels', modelLabels, (modelLabel: string) =>
+ updateMatch(modelLabel, null))}
- {renderSelector(
- match.task || '',
- 'Task labels',
- taskLabels,
- (taskLabel: string) => updateMatch(null, taskLabel),
- )}
+ {renderSelector(match.task || '', 'Task labels', taskLabels, (taskLabel: string) =>
+ updateMatch(null, taskLabel))}
-
+
Threshold
@@ -239,7 +235,7 @@ function DetectorRunner(props: Props): JSX.Element {
-
+
Maximum distance
@@ -260,7 +256,7 @@ function DetectorRunner(props: Props): JSX.Element {
)}
-
+