Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
drunkwolfs committed Jun 23, 2024
1 parent de0dfa4 commit a67049c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions common.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function getDecompressedJsonParam(paramName) {
const json = JSON.parse(decompressed);
return json;
} catch (e) {
console.error(`Error processing parameter ${paramName}:`, e);
console.error(`Error processing parameter ${paramName}:`, e);encodedParam
return null;
}
}
Expand Down Expand Up @@ -115,6 +115,7 @@ function addNumberInput(){
e.params.originalSelect2Event.data.isNew == true){
newUserAdded();
}
document.getElementById('next').style.display = "block";
});
$('#cmbUser2').val(null).trigger('change');
}
Expand All @@ -126,7 +127,7 @@ function addNumberInput(){
continue;
}
var option = document.createElement('option');
option.text = items[i][0];
option.text = users[i][0];
option.value = option.text;

comboBox.add(option);
Expand Down

0 comments on commit a67049c

Please sign in to comment.