#6372: Fix search filtering when selecting 'All Objects'

This commit is contained in:
checktheroads 2021-05-07 16:21:31 -07:00
parent 252bdcbbe0
commit 8c67c7efb3
3 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -22,7 +22,7 @@ function handleSearchDropdownClick(event: Event, button: HTMLButtonElement) {
selectedType.value = searchValue;
} else {
selected = '';
selectedType.innerHTML = 'All Objects';
selectedValue.innerHTML = 'All Objects';
selectedType.value = '';
}
}