UI Stabilization: Global color theme updates (#75B2D6), AI Assistant styling refactor, and navigation fixes

This commit is contained in:
Antigravity
2026-05-09 12:58:16 +00:00
parent 1446463f04
commit 60a3fe5453
47 changed files with 3585 additions and 2149 deletions

View File

@@ -437,10 +437,11 @@ Deine Antwort (nur JSON):
const label = await tx.label.upsert({
where: { notebookId_name: { notebookId, name: suggestedLabel.name } as any },
update: {},
update: { type: 'ai' }, // Update type to AI if it exists as user label
create: {
name: suggestedLabel.name,
color: 'gray',
type: 'ai', // Mark as AI-generated
notebookId,
userId,
},