Default for conjunction

pull/2077/head
digital-gnome 2017-12-15 09:06:40 -05:00
parent c0fcfe6eb6
commit eec174750e
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ function parseRows (rows) {
$j.each(conjTypes, function (i) {
conjSelect.append('<option value="' + i + '" >' + i + '</option>');
});
inputTds.eq(0).html(conjSelect).children().val(cnjVal);
inputTds.eq(0).html(conjSelect).children().val(cnjVal === undefined ? 'and' : cnjVal);
}
let brackets = rows.length - 2;