Skip to content

Commit 2f9eaf0

Browse files
committed
feat(FileSystem): adjust metadata column visibility
Signed-off-by: Pedro Lamas <[email protected]>
1 parent e79d1be commit 2f9eaf0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/components/widgets/filesystem/FileSystem.vue

+6-6
Original file line numberDiff line numberDiff line change
@@ -334,13 +334,13 @@ export default class FileSystem extends Mixins(StateMixin, FilesMixin, ServicesM
334334
{
335335
text: this.$tc('app.general.table.header.extruder_colors'),
336336
value: 'extruder_colors',
337-
visible: isNotDashboard,
337+
visible: false,
338338
cellClass: 'text-no-wrap'
339339
},
340340
{
341341
text: this.$tc('app.general.table.header.filament_temps'),
342342
value: 'filament_temps',
343-
visible: isNotDashboard,
343+
visible: false,
344344
cellClass: 'text-no-wrap'
345345
},
346346
{
@@ -358,7 +358,7 @@ export default class FileSystem extends Mixins(StateMixin, FilesMixin, ServicesM
358358
{
359359
text: this.$tc('app.general.table.header.filament_change_count'),
360360
value: 'filament_change_count',
361-
visible: isNotDashboard,
361+
visible: false,
362362
cellClass: 'text-no-wrap'
363363
},
364364
{
@@ -376,13 +376,13 @@ export default class FileSystem extends Mixins(StateMixin, FilesMixin, ServicesM
376376
{
377377
text: this.$tc('app.general.table.header.mmu_print'),
378378
value: 'mmu_print',
379-
visible: isNotDashboard,
379+
visible: false,
380380
cellClass: 'text-no-wrap'
381381
},
382382
{
383383
text: this.$tc('app.general.table.header.referenced_tools'),
384384
value: 'referenced_tools',
385-
visible: isNotDashboard,
385+
visible: false,
386386
cellClass: 'text-no-wrap'
387387
},
388388
{
@@ -448,7 +448,7 @@ export default class FileSystem extends Mixins(StateMixin, FilesMixin, ServicesM
448448
{
449449
text: this.$tc('app.general.table.header.file_processors'),
450450
value: 'file_processors',
451-
visible: false,
451+
visible: isNotDashboard,
452452
cellClass: 'text-no-wrap'
453453
},
454454
{

0 commit comments

Comments
 (0)