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 && } );