Skip to content

Commit

Permalink
Merge branch 'rel-10_1' into issue-#1776-user_settings_again
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed May 17, 2022
2 parents 213ac6c + be814f8 commit 0929f95
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions var/httpd/htdocs/js/Core.Form.js
Original file line number Diff line number Diff line change
Expand Up @@ -349,9 +349,11 @@ Core.Form = (function (TargetNS) {

// remove possible empty value
$.each(RawValues, function(Index, Value) {
if (Value == '-') return true;
if (Value == '') return true;
if (Value == ' ') return true;
if (Value == '-') return true;
if (Value == '') return true;
if (Value == ' ') return true;
// special treatment for Dest...
if (Value == '||-') return true;

// get all options
Values.push(Value);
Expand Down

0 comments on commit 0929f95

Please sign in to comment.