fix: note-input toolbar overflow and rename Assistant IA to IA Note
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 46s

This commit is contained in:
2026-05-02 21:38:56 +02:00
parent 99d0583871
commit dc5f6b77d9
1223 changed files with 188950 additions and 13 deletions

View File

@@ -889,9 +889,9 @@ export function NoteEditor({ note, readOnly = false, onClose }: NoteEditorProps)
{noteType !== 'checklist' && aiAssistantEnabled && (
<Button variant="ghost" size="sm"
className={cn('h-8 gap-1.5 px-2 text-xs font-medium transition-colors', aiOpen && 'bg-primary/10 text-primary')}
onClick={() => setAiOpen(!aiOpen)} title="Assistant IA">
onClick={() => setAiOpen(!aiOpen)} title="IA Note">
<Sparkles className="h-3.5 w-3.5" />
<span className="hidden sm:inline">Assistant IA</span>
<span className="hidden sm:inline">IA Note</span>
</Button>
)}