1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

#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 3 additions and 3 deletions

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 = '';
}
}