Skip to content

Commit

Permalink
Merge branch 'release-2.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
oat-github-bot committed Jun 11, 2024
2 parents 3b1acb6 + ba84945 commit b2c6e05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oat-sa/tao-item-runner-qti",
"version": "2.3.0",
"version": "2.3.1",
"displayName": "TAO Item Runner QTI",
"description": "TAO QTI Item Runner modules",
"files": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ function validateDecimalInput($input) {
const regex = new RegExp(regexPattern);

if (!regex.test(value)) {
$input.addClass('invalid');
$input.addClass('error');
const decimalError = thousandsSeparator
? __(
Expand All @@ -116,7 +115,6 @@ function validateDecimalInput($input) {
: __('Invalid value, use %s %s for decimal point.', decimalSeparator, decimalSeparatorName);
showTooltip($input, 'error', decimalError);
} else {
$input.removeClass('invalid');
$input.removeClass('error');
hideTooltip($input);
}
Expand Down

0 comments on commit b2c6e05

Please sign in to comment.