diff --git a/src/node.js b/src/node.js index dfac4b7..7c8f73f 100644 --- a/src/node.js +++ b/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 = {} }