removing Utils.getCurrentSetting() and use ReactiveCache directly

This commit is contained in:
Martin Filser 2023-07-20 21:08:39 +02:00
parent a8c071f04c
commit 875442f1ce
8 changed files with 17 additions and 17 deletions

View file

@ -19,7 +19,7 @@ Blaze.registerHelper('currentList', () => {
});
Blaze.registerHelper('currentSetting', () => {
const ret = Utils.getCurrentSetting();
const ret = ReactiveCache.getCurrentSetting();
return ret;
});