don't disable search input & clear it on server change
All checks were successful
Build and Push Docker Image / build (push) Successful in 13s
All checks were successful
Build and Push Docker Image / build (push) Successful in 13s
This commit is contained in:
parent
b8ff2ae303
commit
49dfb59d71
@ -72,9 +72,11 @@ function setTableOrdering(tableId, value) {
|
||||
_tableOrdering[tableId] = value;
|
||||
}
|
||||
|
||||
// Clear all kinds of sorting and filtering when changing servers
|
||||
$(document).on("selectedServerChange", function() {
|
||||
_tableFilters = {};
|
||||
_tableOrdering = {};
|
||||
$(".table-search-input").val("");
|
||||
});
|
||||
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
<label for="searchForFilter" class="table-search-label">
|
||||
<i class="bi bi-search"></i>
|
||||
</label>
|
||||
<input type="search" id="searchForFilter" class="table-search-input disable-while-loading" placeholder="search">
|
||||
<input type="search" id="searchForFilter" class="table-search-input" placeholder="search">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-7 col-xl-8 col-xxl-9 text-md-end table-search-buttons">
|
||||
|
@ -4,7 +4,7 @@
|
||||
<label for="searchForSubscription" class="table-search-label">
|
||||
<i class="bi bi-search"></i>
|
||||
</label>
|
||||
<input type="search" id="searchForSubscription" class="table-search-input disable-while-loading" placeholder="search">
|
||||
<input type="search" id="searchForSubscription" class="table-search-input" placeholder="search">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-7 col-xl-8 col-xxl-9 text-md-end table-search-buttons">
|
||||
|
Loading…
x
Reference in New Issue
Block a user