Skip to content

Commit 7d645a3

Browse files
fix(buckets): remove redundant Hostname column from per-device bucket table
The Hostname is already displayed prominently in each device card's header. Showing it again as a column inside the per-device table is redundant and squeezes the table on phone screens. Remove it and redistribute the column widths (id: 45%→65%, last_updated: 15%→20%, actions: 15% unchanged).
1 parent 48f1fed commit 7d645a3

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

src/views/Buckets.vue

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -262,18 +262,13 @@ export default {
262262
key: 'id',
263263
label: this.$t('buckets.bucketId'),
264264
sortable: true,
265-
thStyle: { width: '45%' },
266-
},
267-
{
268-
key: 'hostname',
269-
sortable: true,
270-
thStyle: { width: '25%' },
265+
thStyle: { width: '65%' },
271266
},
272267
{
273268
key: 'last_updated',
274269
label: this.$t('buckets.updated'),
275270
sortable: true,
276-
thStyle: { width: '15%' },
271+
thStyle: { width: '20%' },
277272
},
278273
{
279274
key: 'actions',

0 commit comments

Comments
 (0)