We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0399690 commit a550ac2Copy full SHA for a550ac2
src/ui/src/builder/sidebar/BuilderSidebarToolkit.vue
@@ -219,6 +219,10 @@ const placeholder = computed(() => {
219
220
function getRelevantToolsInCategory(categoryId: string) {
221
if (categoryId === "Shared Blueprints") {
222
+ // Only show shared blueprints in blueprints mode, not in interface mode
223
+ if (activeToolkit.value !== "blueprints") {
224
+ return [];
225
+ }
226
// Don't show shared blueprints when editing a shared blueprint (no nesting for now)
227
if (
228
!isSharedBlueprintsEnabled.value ||
0 commit comments