From 4b5b32bf12adfcf059562b2e8b7a3948d7a205c8 Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Sat, 18 Jan 2025 23:54:39 -0700 Subject: [PATCH] change unavailable source icon --- src/components/Icon.tsx | 2 ++ src/components/form/SortableList.tsx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Icon.tsx b/src/components/Icon.tsx index 620a51b8..dbaf3dce 100644 --- a/src/components/Icon.tsx +++ b/src/components/Icon.tsx @@ -73,6 +73,7 @@ export enum Icons { CLOUD_ARROW_UP = "cloud_arrow_up", FILE_ARROW_DOWN = "file_arrow_down", ELLIPSIS = "ellipsis", + UNPLUG = "unplug", } export interface IconProps { @@ -163,6 +164,7 @@ const iconList: Record = { cloud_arrow_up: ``, file_arrow_down: ``, ellipsis: ``, + unplug: ``, }; function ChromeCastButton() { diff --git a/src/components/form/SortableList.tsx b/src/components/form/SortableList.tsx index 70984c84..a8ea676e 100644 --- a/src/components/form/SortableList.tsx +++ b/src/components/form/SortableList.tsx @@ -52,7 +52,7 @@ function SortableItem(props: { item: Item }) { )} > {props.item.name} - {props.item.disabled && } + {props.item.disabled && } );