From bc9abfb2d3c738d70917bb87cceb6e1b92d223f7 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 1 Jun 2023 13:39:50 +0300 Subject: [PATCH] [DE] Fix Bug 62791 --- apps/documenteditor/main/app/view/ListSettingsDialog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/view/ListSettingsDialog.js b/apps/documenteditor/main/app/view/ListSettingsDialog.js index 95001f2395..c6329336e2 100644 --- a/apps/documenteditor/main/app/view/ListSettingsDialog.js +++ b/apps/documenteditor/main/app/view/ListSettingsDialog.js @@ -1247,7 +1247,7 @@ define([ }, loadRecent: function(){ - var sRecents = Common.localStorage.getItem('de-recent-bullets'); + var sRecents = Common.localStorage.getItem('de-recent-list-bullets'); if(sRecents !== ''){ sRecents = JSON.parse(sRecents); } @@ -1272,7 +1272,7 @@ define([ saveRecent: function(){ var sJSON = JSON.stringify(this.recentBullets); - Common.localStorage.setItem('de-recent-bullets', sJSON); + Common.localStorage.setItem('de-recent-list-bullets', sJSON); }, saveRecentNum: function(){