From 7735a0fc7de843c0e46f8d8c289fdfbe1f615f8f Mon Sep 17 00:00:00 2001 From: Baptiste Devessier Date: Mon, 12 Jan 2026 12:26:58 +0100 Subject: [PATCH] Add missing RPL configuration for note tabs (#17092) ## Before CleanShot 2026-01-12 at 12 03
52@2x ## After https://github.com/user-attachments/assets/16db3823-8b7d-4403-9901-75ee109680af --- .../page-layout/constants/DefaultNoteRecordPageLayout.ts | 3 ++- .../page-layout/constants/DefaultTaskRecordPageLayout.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/twenty-front/src/modules/page-layout/constants/DefaultNoteRecordPageLayout.ts b/packages/twenty-front/src/modules/page-layout/constants/DefaultNoteRecordPageLayout.ts index 6088760b5e..4f2c8f7e6d 100644 --- a/packages/twenty-front/src/modules/page-layout/constants/DefaultNoteRecordPageLayout.ts +++ b/packages/twenty-front/src/modules/page-layout/constants/DefaultNoteRecordPageLayout.ts @@ -86,8 +86,9 @@ export const DEFAULT_NOTE_RECORD_PAGE_LAYOUT: PageLayout = { __typename: 'PageLayoutTab', id: 'note-tab-note', title: 'Note', + icon: 'IconNotes', position: 150, - layoutMode: 'vertical-list', + layoutMode: 'canvas', pageLayoutId: DEFAULT_NOTE_RECORD_PAGE_LAYOUT_ID, createdAt: new Date().toISOString(), updatedAt: new Date().toISOString(), diff --git a/packages/twenty-front/src/modules/page-layout/constants/DefaultTaskRecordPageLayout.ts b/packages/twenty-front/src/modules/page-layout/constants/DefaultTaskRecordPageLayout.ts index 2bc0dcda17..7f9ed918ae 100644 --- a/packages/twenty-front/src/modules/page-layout/constants/DefaultTaskRecordPageLayout.ts +++ b/packages/twenty-front/src/modules/page-layout/constants/DefaultTaskRecordPageLayout.ts @@ -83,8 +83,9 @@ export const DEFAULT_TASK_RECORD_PAGE_LAYOUT: PageLayout = { __typename: 'PageLayoutTab', id: 'task-tab-note', title: 'Note', + icon: 'IconNotes', position: 150, - layoutMode: 'vertical-list', + layoutMode: 'canvas', pageLayoutId: DEFAULT_TASK_RECORD_PAGE_LAYOUT_ID, createdAt: new Date().toISOString(), updatedAt: new Date().toISOString(),