feat: Add anonymous dynamic canvas option to gallery
This commit is contained in:
@@ -240,7 +240,7 @@ function triggerToolFlash() {
|
||||
}, 500)
|
||||
}
|
||||
|
||||
type PageName = 'home' | 'canvas' | 'components' | 'themes' | 'project-canvas' | 'database' | 'source' | 'terminal' | 'tools'
|
||||
type PageName = 'home' | 'canvas' | 'components' | 'themes' | 'project-canvas' | 'database' | 'source' | 'terminal' | 'tools' | 'agents'
|
||||
|
||||
onMounted(async () => {
|
||||
// Connect to WebSocket for Claude status updates
|
||||
@@ -357,6 +357,10 @@ watch(() => route.name, (newPage) => {
|
||||
<span class="header-canvas-name">{{ projectCanvasStore.activeCanvas.name }}</span>
|
||||
<span v-if="projectCanvasStore.activeCanvas.is_system" class="header-canvas-badge">Sistema</span>
|
||||
</template>
|
||||
<template v-if="canvasStore.isAnonymousCanvas && route.name === 'canvas'">
|
||||
<span class="header-sep">/</span>
|
||||
<span class="header-canvas-name">anonimo</span>
|
||||
</template>
|
||||
<button class="debug-btn" :class="{ active: showDebugConsole }" @click="showDebugConsole = !showDebugConsole" title="Debug Console">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
||||
<path d="M12 20h9"/><path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"/>
|
||||
|
||||
Reference in New Issue
Block a user