mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 12:39:20 +03:00
Bugfix: inputosaurus revamp failed due to missing onChange handling
This commit is contained in:
parent
39f39db447
commit
673f1bff79
2 changed files with 8 additions and 12 deletions
6
dev/External/User/ko.js
vendored
6
dev/External/User/ko.js
vendored
|
|
@ -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);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue