mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-23 19:57:09 +00:00
fix: Move OS column to detailed tier (xl+ screens)
OS info requires guest agent to be installed and configured, so most guests won't have this data. Move to detailed tier so it only shows on extra-wide screens or when explicitly enabled by user.
This commit is contained in:
@@ -329,10 +329,10 @@ export const GUEST_COLUMNS: GuestColumnDef[] = [
|
||||
|
||||
// Supplementary - visible on lg+ (1024px), user toggleable
|
||||
{ id: 'backup', label: 'Backup', priority: 'supplementary', toggleable: true },
|
||||
{ id: 'os', label: 'OS', priority: 'supplementary', toggleable: true },
|
||||
{ id: 'tags', label: 'Tags', priority: 'supplementary', toggleable: true },
|
||||
|
||||
// Detailed - visible on xl+ (1280px), user toggleable
|
||||
{ id: 'os', label: 'OS', priority: 'detailed', toggleable: true },
|
||||
{ id: 'diskRead', label: 'D Read', priority: 'detailed', toggleable: true, sortKey: 'diskRead' },
|
||||
{ id: 'diskWrite', label: 'D Write', priority: 'detailed', toggleable: true, sortKey: 'diskWrite' },
|
||||
{ id: 'netIn', label: 'Net In', priority: 'detailed', toggleable: true, sortKey: 'networkIn' },
|
||||
|
||||
Reference in New Issue
Block a user