Merge branch 'staging' into redesign-extension-manager

87535c6ec83319c045140ac39b5aed8f1cdb8038

Cohee <18619528+Cohee1207@users.noreply.github.com>

2 files changed, +2 -3Showing whitespace changes
public/scripts/filters.js+0 -1
@@ -448,6 +448,5 @@ export class FilterHelper {
448448 for (const cache of Object.values(this.fuzzySearchCaches)) {
449449 cache.resultMap.clear();
450450 }
451- console.log('All fuzzy search caches cleared');
452451 }
453452}
public/scripts/power-user.js+2 -2
@@ -1756,7 +1756,7 @@ async function loadContextSettings() {
17561756 } else {
17571757 $element.val(power_user.context[control.property]);
17581758 }
17591759 console.logdebug(`Setting ${$element.prop('id')} to ${power_user.context[control.property]}`);
17601760
17611761 // If the setting already exists, no need to duplicate it
17621762 // TODO: Maybe check the power_user object for the setting instead of a flag?
@@ -1767,7 +1767,7 @@ async function loadContextSettings() {
17671767 } else {
17681768 power_user.context[control.property] = value;
17691769 }
17701770 console.logdebug(`Setting ${$element.prop('id')} to ${value}`);
17711771 if (!CSS.supports('field-sizing', 'content') && $(this).is('textarea')) {
17721772 await resetScrollHeight($(this));
17731773 }