Bugfix: inputosaurus revamp failed due to missing onChange handling

This commit is contained in:
djmaze 2020-09-23 13:07:44 +02:00
parent 39f39db447
commit 673f1bff79
2 changed files with 8 additions and 12 deletions

View file

@ -79,9 +79,9 @@ ko.bindingHandlers.emailsTags = {
}).flat(Infinity).map(
item => (item.toLine ? [item.toLine(false), item] : [item, null])
),
change: event => {
element.EmailsTagsValue = event.target.value;
fValue(event.target.value);
onChange: value => {
element.EmailsTagsValue = value;
fValue(value);
}
});