diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 5228e08507..7ed28558ce 100755 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -1922,6 +1922,7 @@ $class = 'databox filters'; 250 ); ?> + @@ -3671,6 +3672,18 @@ $(document).ready (function () { $("#inventory_modules").html(''); }) + $("#text-url").keyup ( + function () { + const user_typed_url = $(this).val(); + + if (user_typed_url.match('^.+:\/\/')) { + $("#url_warning_text").hide(); + } else { + $("#url_warning_text").show(); + } + } + ); + $("#combo_group").change ( function () { $("#id_agents").html('');