mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
Bugfix: inputosaurus failed due to changes
This commit is contained in:
parent
88b0bc1a25
commit
b0e3020aab
2 changed files with 10 additions and 10 deletions
9
dev/External/User/ko.js
vendored
9
dev/External/User/ko.js
vendored
|
|
@ -77,12 +77,9 @@ ko.bindingHandlers.emailsTags = {
|
|||
: null;
|
||||
},
|
||||
parseHook: input =>
|
||||
input.map(inputValue => {
|
||||
const values = EmailModel.parseEmailLine(inputValue);
|
||||
return values.length ? values : inputValue;
|
||||
}).flat(Infinity).map(
|
||||
item => (item.toLine ? [item.toLine(false), item] : [item, null])
|
||||
),
|
||||
input.map(inputValue => EmailModel.parseEmailLine(inputValue))
|
||||
.flat(Infinity)
|
||||
.map(item => (item.toLine ? [item.toLine(false), item] : [item, null])),
|
||||
onChange: value => {
|
||||
element.EmailsTagsValue = value;
|
||||
fValue(value);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue