Add special treatment of value field for textarea element.
This commit is contained in:
Родитель
c548122ffe
Коммит
cb197002cf
11
src/node.js
11
src/node.js
|
@ -79,9 +79,14 @@ export class VirtualNode {
|
|||
}
|
||||
}
|
||||
// Special handlind of input.value
|
||||
else if (key === 'value' &&
|
||||
tagName.toLowerCase() === 'input' &&
|
||||
property != null) {
|
||||
else if
|
||||
( key === 'value' &&
|
||||
property != null &&
|
||||
( tagName.toLowerCase() === 'input' ||
|
||||
tagName.toLowerCase() === 'textarea'
|
||||
)
|
||||
)
|
||||
{
|
||||
if (hooks == null) {
|
||||
hooks = {}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче