From 896a5ad23f55eaa9fb5ddbc5b9504a4ade909ca7 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Mon, 16 Dec 2024 20:02:19 +0530 Subject: [PATCH] feat: add message list and local storage --- .../components-next/message/MessageList.vue | 124 ++++++++++++++++++ .../dashboard/constants/localStorage.js | 1 + 2 files changed, 125 insertions(+) diff --git a/app/javascript/dashboard/components-next/message/MessageList.vue b/app/javascript/dashboard/components-next/message/MessageList.vue index e69de29bb..927956cf5 100644 --- a/app/javascript/dashboard/components-next/message/MessageList.vue +++ b/app/javascript/dashboard/components-next/message/MessageList.vue @@ -0,0 +1,124 @@ + + + diff --git a/app/javascript/dashboard/constants/localStorage.js b/app/javascript/dashboard/constants/localStorage.js index ee6a4357a..4e433707d 100644 --- a/app/javascript/dashboard/constants/localStorage.js +++ b/app/javascript/dashboard/constants/localStorage.js @@ -5,4 +5,5 @@ export const LOCAL_STORAGE_KEYS = { COLOR_SCHEME: 'color_scheme', DISMISSED_LABEL_SUGGESTIONS: 'labelSuggestionsDismissed', MESSAGE_REPLY_TO: 'messageReplyTo', + USE_NEXT_BUBBLE: 'useNextBubble', };