Fix: correzione filtro tipologia in statistiche

This commit is contained in:
Beppe 2024-11-06 09:10:02 +01:00
parent 4fef5cfb3e
commit a0165c9a27
1 changed files with 5 additions and 1 deletions

View File

@ -791,7 +791,11 @@ $(".shorten").shorten({
});
$("#idtipiintervento").change(function(){
let idtipi = JSON.stringify($(this).val());
let tipi = "";
if( $(this).val() ){
idtipi = JSON.stringify($(this).val());
}
session_set("superselect,idtipiintervento",idtipi,0);
location.reload();
});