File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,15 @@ import { useDateTimeRangePicker } from '~/components/form/fields/DateTimeRangePi
2323import { QueryParamTabs } from '~/components/QueryParamTabs'
2424import { useIntervalPicker } from '~/components/RefetchIntervalPicker'
2525import { SystemMetric } from '~/components/SystemMetric'
26+ import { LinkCell } from '~/table/cells/LinkCell'
2627import { Listbox } from '~/ui/lib/Listbox'
2728import { PageHeader , PageTitle } from '~/ui/lib/PageHeader'
2829import { ResourceMeter } from '~/ui/lib/ResourceMeter'
2930import { Table } from '~/ui/lib/Table'
3031import { Tabs } from '~/ui/lib/Tabs'
3132import { docLinks } from '~/util/links'
3233import { round } from '~/util/math'
34+ import { pb } from '~/util/path-builder'
3335import { bytesToGiB , bytesToTiB } from '~/util/units'
3436
3537SystemUtilizationPage . loader = async ( ) => {
@@ -181,7 +183,7 @@ function UsageTab() {
181183 { siloUtilizations . items . map ( ( silo ) => (
182184 < Table . Row key = { silo . siloName } >
183185 < Table . Cell width = "16%" height = "large" >
184- { silo . siloName }
186+ < LinkCell to = { pb . silo ( { silo : silo . siloName } ) } > { silo . siloName } </ LinkCell >
185187 </ Table . Cell >
186188 < Table . Cell width = "14%" height = "large" >
187189 < UsageCell
You can’t perform that action at this time.
0 commit comments