diff --git a/lib/templates/url_select.mustache b/lib/templates/url_select.mustache index 09048960ba9..7960b336dfe 100644 --- a/lib/templates/url_select.mustache +++ b/lib/templates/url_select.mustache @@ -74,6 +74,9 @@ {{#js}} require(['jquery'], function($) { $('#{{id}}').change(function() { + if (!$(this).val()) { + return false; + } $('#{{formid}}').submit(); }); });