Skip to content

Commit

Permalink
Merge pull request #1269 from MitrahSoft/LDEV-3433
Browse files Browse the repository at this point in the history
Bug fix: prevents to show error message multi-time for LDEV-3433
  • Loading branch information
zspitzer authored Apr 9, 2021
2 parents 0386a56 + c50432d commit a1a0074
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ if(isInstalled) installedVersion=toVersionSortable(installed.version);
function versionSelected(v, i){
var version = $("##versions").val();
if(version == "")
$( ".msg" ).append( "<div class='error'>Please Choose any version</div>" );
$( ".msg" ).empty().append( "<div class='error'>Please Choose any version</div>" );
else
$( "##versionForm" ).submit();
}
Expand Down

0 comments on commit a1a0074

Please sign in to comment.