From 89af079b976dca9f316e91ebec8e5a159b775425 Mon Sep 17 00:00:00 2001 From: Sam Hatchett Date: Wed, 11 Apr 2018 13:36:04 -0400 Subject: [PATCH] attempts to fix #1331 Might not be the cleanest way, but at least it handles the logic adequately. --- src/validate/html/validateElement.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/validate/html/validateElement.ts b/src/validate/html/validateElement.ts index 00c195a85c..a89cfc61e5 100644 --- a/src/validate/html/validateElement.ts +++ b/src/validate/html/validateElement.ts @@ -112,8 +112,10 @@ export default function validateElement( `'multiple' attribute cannot be dynamic if select uses two-way binding`, attribute ); + } else { // not dynamic + checkTypeAttribute(validator, node); } - } else { + } else { // not select checkTypeAttribute(validator, node); } } else if (name === 'checked' || name === 'indeterminate') {