Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/layouts/SystemLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
Cloud16Icon,
Metrics16Icon,
Networking16Icon,
Storage16Icon,
Servers16Icon,
} from '@oxide/design-system/icons/react'

import { trigger404 } from '~/components/ErrorBoundary'
Expand Down Expand Up @@ -109,7 +109,7 @@ export function SystemLayout() {
<Metrics16Icon /> Utilization
</NavLinkItem>
<NavLinkItem to={pb.sledInventory()}>
<Storage16Icon /> Inventory
<Servers16Icon /> Inventory
</NavLinkItem>
<NavLinkItem to={pb.ipPools()}>
<Networking16Icon /> IP Pools
Expand Down
4 changes: 2 additions & 2 deletions app/pages/system/inventory/DisksTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
import { createColumnHelper } from '@tanstack/react-table'

import { apiQueryClient, type PhysicalDisk } from '@oxide/api'
import { Racks24Icon } from '@oxide/design-system/icons/react'
import { Servers24Icon } from '@oxide/design-system/icons/react'

import { PAGE_SIZE, useQueryTable } from '~/table/QueryTable'
import { Badge } from '~/ui/lib/Badge'
import { EmptyMessage } from '~/ui/lib/EmptyMessage'

const EmptyState = () => (
<EmptyMessage
icon={<Racks24Icon />}
icon={<Servers24Icon />}
title="Something went wrong"
body="We expected some racks here, but none were found"
/>
Expand Down
4 changes: 2 additions & 2 deletions app/pages/system/inventory/InventoryPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Copyright Oxide Computer Company
*/
import { apiQueryClient, usePrefetchedApiQuery } from '@oxide/api'
import { Racks24Icon } from '@oxide/design-system/icons/react'
import { Servers24Icon } from '@oxide/design-system/icons/react'

import { RouteTabs, Tab } from '~/components/RouteTabs'
import { PAGE_SIZE } from '~/table/QueryTable'
Expand All @@ -27,7 +27,7 @@ export function InventoryPage() {
return (
<>
<PageHeader>
<PageTitle icon={<Racks24Icon />}>Inventory</PageTitle>
<PageTitle icon={<Servers24Icon />}>Inventory</PageTitle>
</PageHeader>

<RouteTabs fullWidth>
Expand Down
4 changes: 2 additions & 2 deletions app/pages/system/inventory/SledsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import { createColumnHelper } from '@tanstack/react-table'

import { apiQueryClient, type Sled } from '@oxide/api'
import { Racks24Icon } from '@oxide/design-system/icons/react'
import { Servers24Icon } from '@oxide/design-system/icons/react'

import { makeLinkCell } from '~/table/cells/LinkCell'
import { PAGE_SIZE, useQueryTable } from '~/table/QueryTable'
Expand All @@ -18,7 +18,7 @@ import { pb } from '~/util/path-builder'
const EmptyState = () => {
return (
<EmptyMessage
icon={<Racks24Icon />}
icon={<Servers24Icon />}
title="Something went wrong"
body="We expected some racks here, but none were found"
/>
Expand Down
4 changes: 2 additions & 2 deletions app/pages/system/inventory/sled/SledPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { filesize } from 'filesize'
import type { LoaderFunctionArgs } from 'react-router-dom'

import { apiQueryClient, usePrefetchedApiQuery } from '@oxide/api'
import { Racks24Icon } from '@oxide/design-system/icons/react'
import { Servers24Icon } from '@oxide/design-system/icons/react'

import { RouteTabs, Tab } from '~/components/RouteTabs'
import { requireSledParams, useSledParams } from '~/hooks'
Expand All @@ -34,7 +34,7 @@ export function SledPage() {
return (
<>
<PageHeader>
<PageTitle icon={<Racks24Icon />}>Sled</PageTitle>
<PageTitle icon={<Servers24Icon />}>Sled</PageTitle>
</PageHeader>

<PropertiesTable.Group className="-mt-8 mb-16">
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.