Merge branch 'ent-10972-error-de-visualizacion-en-creacion-de-alerta-correlada-condiciones-en-vista-simple-y-detallada' into 'develop'

Ent 10972 error de visualizacion en creacion de alerta correlada condiciones en vista simple y detallada

See merge request artica/pandorafms!5761
This commit is contained in:
Daniel Rodriguez 2023-05-16 08:40:15 +00:00
commit a7b5015281
1 changed files with 6 additions and 1 deletions

View File

@ -445,7 +445,12 @@ function save_data_input(calendar) {
// eslint-disable-next-line no-unused-vars
function loadEventBBDD(events) {
if (events == undefined || events === null || events === "") {
if (
events == undefined ||
events === null ||
events === "null" ||
events === ""
) {
$(".alert_schedule").show();
return {};
}