mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-06 03:45:26 +00:00
Added decipients check
This commit is contained in:
parent
4cad8713e9
commit
1f1edd0432
1 changed files with 1 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ $(document).ready(function () {
|
|||
|
||||
if (!recipient.endpoint_conf) return;
|
||||
|
||||
const isBuiltin = recipient.endpoint_conf.builtin || false;
|
||||
const isBuiltin = (recipient.endpoint_conf && recipient.endpoint_conf.builtin) || false;
|
||||
if (isBuiltin) return;
|
||||
|
||||
return DataTableUtils.createActionButtons([
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue