Skip to content

Commit 242cec1

Browse files
committed
Increase width for boolean fields
1 parent 0a123a4 commit 242cec1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ui/src/dataset.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -408,27 +408,27 @@ export class Datasets {
408408
),
409409
new StaticFilter(
410410
"Available online",
411-
30,
411+
40,
412412
data =>
413413
optionalBoolean(data.dataset_properties?.available_online),
414414
this.inner,
415415
),
416416
new StaticFilter(
417417
"Ground truth",
418-
30,
418+
40,
419419
data =>
420420
optionalBoolean(data.dataset_properties?.has_ground_truth),
421421
this.inner,
422422
),
423423
new StaticFilter(
424424
"Real data",
425-
30,
425+
40,
426426
data => optionalBoolean(data.dataset_properties?.has_real_data),
427427
this.inner,
428428
),
429429
new StaticFilter(
430430
"Simulated data",
431-
30,
431+
40,
432432
data =>
433433
optionalBoolean(
434434
data.dataset_properties?.has_simulated_data,
@@ -437,13 +437,13 @@ export class Datasets {
437437
),
438438
new StaticFilter(
439439
"Frames",
440-
30,
440+
40,
441441
data => optionalBoolean(data.dataset_properties?.has_frames),
442442
this.inner,
443443
),
444444
new StaticFilter(
445445
"Biases",
446-
30,
446+
40,
447447
data => optionalBoolean(data.dataset_properties?.has_biases),
448448
this.inner,
449449
),

0 commit comments

Comments
 (0)