diff --git a/webapp/web/js/account/proxyUtils.js b/webapp/web/js/account/proxyUtils.js index 458a7b189..5763c710f 100644 --- a/webapp/web/js/account/proxyUtils.js +++ b/webapp/web/js/account/proxyUtils.js @@ -14,8 +14,15 @@ $(document).ready(function(){ if ($proxyUri == undefined || $profileUri == undefined){ $('#error-alert').removeClass('hidden'); - $('#error-alert p').append("You must select a minimum of 1 editor and profile."); - return false; + + var $errorAlert = $('#error-alert p').html(); + + if ($errorAlert !=""){ + return false; + }else{ + $('#error-alert p').append("You must select a minimum of 1 editor and profile."); + return false; + } } }); });