diff --git a/src/frontend/src/components/IOview/index.tsx b/src/frontend/src/components/IOview/index.tsx index ef9d4018d..443197fa6 100644 --- a/src/frontend/src/components/IOview/index.tsx +++ b/src/frontend/src/components/IOview/index.tsx @@ -126,6 +126,16 @@ export default function IOView({ children, open, setOpen }): JSX.Element { )} +
+ {categories[selectedCategory].name === "Inputs" && + <> + Text Inputs + } + {categories[selectedCategory].name === "Outputs" && + <> + Prompt Outputs + } +
{UpdateAccordion() .filter( (input) => diff --git a/src/frontend/src/utils/styleUtils.ts b/src/frontend/src/utils/styleUtils.ts index 7a42368bd..16565e53c 100644 --- a/src/frontend/src/utils/styleUtils.ts +++ b/src/frontend/src/utils/styleUtils.ts @@ -11,7 +11,7 @@ import { ChevronDown, ChevronLeft, ChevronRight, - Sliders, + ChevronRightSquare, ChevronUp, ChevronsLeft, ChevronsRight, @@ -40,6 +40,7 @@ import { Fingerprint, FlaskConical, FolderPlus, + FormInput, Forward, Gift, GitBranchPlus, @@ -88,6 +89,7 @@ import { Share, Share2, Shield, + Sliders, Sparkles, Square, Store, @@ -385,6 +387,8 @@ export const nodeIconsLucide: iconsType = { Square, Minimize2, Maximize2, + FormInput, + ChevronRightSquare, SaveAll, Forward, Share2,