From 2fb75a6462ae84df82c7b50d5a8304b7221b22d1 Mon Sep 17 00:00:00 2001 From: Johannes Marbach Date: Mon, 10 May 2021 17:18:11 +0200 Subject: [PATCH] [GH-375] Persist `randomIcons` setting in native mac app (#376) Fixes: #375 --- webapp/src/userSettings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/userSettings.ts b/webapp/src/userSettings.ts index 188fcb072..2d1190afd 100644 --- a/webapp/src/userSettings.ts +++ b/webapp/src/userSettings.ts @@ -11,7 +11,7 @@ export class UserSettings { } } -const keys = ['language', 'theme', 'lastBoardId', 'lastViewId', 'emoji-mart.last', 'emoji-mart.frequently'] +const keys = ['language', 'theme', 'lastBoardId', 'lastViewId', 'emoji-mart.last', 'emoji-mart.frequently', 'randomIcons'] export function exportUserSettingsBlob(): string { return window.btoa(exportUserSettings())