Skip to content

Commit

Permalink
Misspelling in name
Browse files Browse the repository at this point in the history
  • Loading branch information
Gengar-i committed Mar 15, 2024
1 parent eca170d commit e7bd320
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bundle/Resources/public/js/scripts/fieldType/ezkeyword.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
const SELECTOR_ERROR_NODE = '.ibexa-form-error';
const CLASS_TAGGIFY_FOCUS = 'ibexa-data-source__taggify--focused';
const ENTER_KEY_CODE = 13;
const COMA_KEY_CODE = 188;
const COMMA_KEY_CODE = 188;

class EzKeywordValidator extends ibexa.BaseFieldValidator {
/**
Expand Down Expand Up @@ -72,7 +72,7 @@
containerNode: taggifyContainer,
displayLabel: false,
displayInputValues: false,
hotKeys: [ENTER_KEY_CODE, COMA_KEY_CODE],
hotKeys: [ENTER_KEY_CODE, COMMA_KEY_CODE],
});
const keywordInput = field.querySelector('.ibexa-data-source__input-wrapper .ibexa-data-source__input.form-control');
const updateKeywords = updateValue.bind(this, keywordInput);
Expand Down

0 comments on commit e7bd320

Please sign in to comment.