fix: restore metric filter interactions
This commit is contained in:
@@ -879,6 +879,7 @@ function syncAllSpreadMetricRules(toolbar: PluginToolbarDom): void {
|
||||
|
||||
function syncSpreadMetricRuleState(rule: SpreadMetricRuleDom): void {
|
||||
rule.root.hidden = !rule.enabledInput.checked;
|
||||
rule.root.style.display = rule.enabledInput.checked ? "flex" : "none";
|
||||
if (!rule.enabledInput.checked) {
|
||||
applyDefaultSpreadMetricRuleState(rule);
|
||||
clearSpreadMetricRuleValidation(rule);
|
||||
@@ -1170,8 +1171,8 @@ function applyToolbarPanelStyles(panel: HTMLElement): void {
|
||||
panel.style.flex = "1 1 auto";
|
||||
panel.style.minWidth = "0";
|
||||
panel.style.padding = "0";
|
||||
panel.style.overflowX = "hidden";
|
||||
panel.style.overflowY = "hidden";
|
||||
panel.style.overflowX = "visible";
|
||||
panel.style.overflowY = "visible";
|
||||
}
|
||||
|
||||
function applyToolbarRowStyles(row: HTMLElement): void {
|
||||
|
||||
Reference in New Issue
Block a user