Closes #14237: Clear child selections on change to parent selection

This commit is contained in:
Jeremy Stretch 2024-02-08 10:43:49 -05:00
parent 018815cf9d
commit 674f794c69
3 changed files with 3 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -295,6 +295,9 @@ export class DynamicTomSelect extends TomSelect {
this.updateQueryParams(target.name);
this.updatePathValues(target.name);
// Clear any previous selection(s) as the parent filter has changed
this.clear();
// Load new data.
this.load(this.lastValue);
}