loader.js: Don't attempt to load an extra update to a closed column

This commit is contained in:
Johannes Meyer 2023-09-06 14:54:22 +02:00
parent a3c04f9108
commit 6e16ded825

View File

@ -948,6 +948,11 @@
}
url = $target.data('icingaUrl');
if (! url) {
_this.icinga.logger.debug(
'Superfluous extra update. The target\'s container has no url', el);
return;
}
} else {
_this.icinga.logger.error('Invalid extra update', el);
return;