diff --git a/src/components/BlueprintDetailsForm.tsx b/src/components/BlueprintDetailsForm.tsx index 92b6a304..2bbfaa60 100644 --- a/src/components/BlueprintDetailsForm.tsx +++ b/src/components/BlueprintDetailsForm.tsx @@ -110,6 +110,15 @@ export default function BlueprintDetailsForm({ Dashboard )}{" "} + {blueprint.source === "CLI" && ( + + + CLI + + )}{" "} diff --git a/src/components/BlueprintsTable.tsx b/src/components/BlueprintsTable.tsx index 8031e506..63cd3dce 100644 --- a/src/components/BlueprintsTable.tsx +++ b/src/components/BlueprintsTable.tsx @@ -128,6 +128,19 @@ export default function BlueprintsTable({ blueprints, orgId }: Props) { ); } + case "CLI": { + return ( + + + + CLI + + + ); + } } } },