add not condition filter

This commit is contained in:
marcos 2021-06-17 15:04:21 +02:00
parent dff7220be9
commit 56b6418716
1 changed files with 2 additions and 2 deletions

View File

@ -2050,14 +2050,14 @@ function changeNotConditionStatus() {
document.getElementById("select2-modulegroup-container").innerHTML = "None";
document.getElementById("select2-tag_filter-container").innerHTML = "None";
$('select[name=datatypebox] > option:first-child').val('None');
$('#datatypebox option:first').text('None');
}else {
document.getElementById("select2-status-container").innerHTML = "All";
document.getElementById("select2-moduletype-container").innerHTML = "All";
document.getElementById("select2-ag_group-container").innerHTML = "All";
document.getElementById("select2-modulegroup-container").innerHTML = "All";
document.getElementById("select2-tag_filter-container").innerHTML = "All";
$('select[name=datatypebox] > option:first-child').val('None');
$('#datatypebox option:first').text('All');
}