From 4208595293a18c2cd95064caf77db786c2902ac8 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Tue, 2 Mar 2021 20:27:51 -0500 Subject: Persistent storage controller (#1478) * Add PersistentStorageController * Update DictionaryController * Update DictionaryImportController * Update when storage stats are updated --- ext/js/pages/welcome-main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/js/pages/welcome-main.js') diff --git a/ext/js/pages/welcome-main.js b/ext/js/pages/welcome-main.js index 27d0af6a..90067282 100644 --- a/ext/js/pages/welcome-main.js +++ b/ext/js/pages/welcome-main.js @@ -62,10 +62,10 @@ async function setupGenericSettingsController(genericSettingController) { const settingsController = new SettingsController(optionsFull.profileCurrent); settingsController.prepare(); - const dictionaryController = new DictionaryController(settingsController, modalController, null, statusFooter); + const dictionaryController = new DictionaryController(settingsController, modalController, statusFooter); dictionaryController.prepare(); - const dictionaryImportController = new DictionaryImportController(settingsController, modalController, null, statusFooter); + const dictionaryImportController = new DictionaryImportController(settingsController, modalController, statusFooter); dictionaryImportController.prepare(); const genericSettingController = new GenericSettingController(settingsController); -- cgit v1.2.3