From f97c5e8ec4d81b813d0c02cb5ab7c47deb16257f Mon Sep 17 00:00:00 2001 From: Antigravity Date: Sat, 11 Jul 2026 16:47:13 +0000 Subject: [PATCH] =?UTF-8?q?feat(brainstorm):=20rouvrir=20la=20note=20cr?= =?UTF-8?q?=C3=A9=C3=A9e=20depuis=20une=20id=C3=A9e=20convertie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Quand une idée est déjà convertie en note: - Badge 'Note Created →' cliquable dans le header de l'idée (ouvre le peek) - Bouton 'Open Note →' remplace 'Create Note' (bordure emerald, fond vert) - peek.open(convertedToNoteId) ouvre le drawer latéral avec la note - L'utilisateur peut relire la note sans quitter le brainstorm --- .cursor/hooks/state/continual-learning.json | 4 +- .../components/brainstorm/brainstorm-page.tsx | 42 +++++++++++++------ 2 files changed, 31 insertions(+), 15 deletions(-) diff --git a/.cursor/hooks/state/continual-learning.json b/.cursor/hooks/state/continual-learning.json index bb2497b..014393d 100644 --- a/.cursor/hooks/state/continual-learning.json +++ b/.cursor/hooks/state/continual-learning.json @@ -1,8 +1,8 @@ { "version": 1, "lastRunAtMs": 1783196565768, - "turnsSinceLastRun": 6, + "turnsSinceLastRun": 7, "lastTranscriptMtimeMs": 1783196565691.0437, - "lastProcessedGenerationId": "6ccc52d1-8073-4386-b4d0-84c60a305da2", + "lastProcessedGenerationId": "71df05a3-2a54-46fa-aa10-c8b8357c33fd", "trialStartedAtMs": null } diff --git a/memento-note/components/brainstorm/brainstorm-page.tsx b/memento-note/components/brainstorm/brainstorm-page.tsx index 93d7c2b..89a7a00 100644 --- a/memento-note/components/brainstorm/brainstorm-page.tsx +++ b/memento-note/components/brainstorm/brainstorm-page.tsx @@ -754,9 +754,13 @@ export function BrainstormPage() {
{selectedIdea.status === 'converted' && ( - - {t('brainstorm.noteCreated') || 'Note Created'} - + )} {canEdit && ( - + {selectedIdea.status === 'converted' && selectedIdea.convertedToNoteId ? ( + + ) : ( + + )}