Fix: correzione filtro tipologia in statistiche

This commit is contained in:
Beppe 2024-11-06 09:10:02 +01:00 committed by valentina
parent f5ac8ea082
commit 646fdc77bd
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();
});