Show the source in the UI

This commit is contained in:
Owen
2026-01-22 15:16:41 -08:00
committed by Owen Schwartz
parent 2af67ad355
commit d227db7b7b
2 changed files with 22 additions and 0 deletions

View File

@@ -128,6 +128,19 @@ export default function BlueprintsTable({ blueprints, orgId }: Props) {
</Badge>
);
}
case "CLI": {
return (
<Badge
variant="secondary"
className="inline-flex items-center gap-1"
>
<span className="inline-flex items-center gap-1 ">
<Terminal className="w-3 h-3" />
CLI
</span>
</Badge>
);
}
}
}
},