From 267b935946a749aa2382890a2e4d52a1727ac863 Mon Sep 17 00:00:00 2001 From: Charlie Park Date: Tue, 27 Aug 2024 11:04:03 -0700 Subject: [PATCH] Update roundel in EnabledCell for disabled badge (#2399) --- app/table/cells/EnabledCell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/table/cells/EnabledCell.tsx b/app/table/cells/EnabledCell.tsx index b56faa25af..8895e6766b 100644 --- a/app/table/cells/EnabledCell.tsx +++ b/app/table/cells/EnabledCell.tsx @@ -6,7 +6,7 @@ * Copyright Oxide Computer Company */ import type { VpcFirewallRuleStatus } from '@oxide/api' -import { Success12Icon } from '@oxide/design-system/icons/react' +import { Disabled12Icon, Success12Icon } from '@oxide/design-system/icons/react' import { Badge } from '~/ui/lib/Badge' @@ -18,7 +18,7 @@ export const EnabledCell = ({ value }: { value: VpcFirewallRuleStatus }) => ) : ( <> - + Disabled )