pull/6194/head
Simon H 5 years ago committed by GitHub
parent b2a7b50053
commit e9f43759b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -36,7 +36,8 @@ export default class Binding extends Node {
super(component, parent, scope, info);
if (info.expression.type !== 'Identifier' && info.expression.type !== 'MemberExpression') {
return component.error(info, compiler_errors.invalid_directive_value);
component.error(info, compiler_errors.invalid_directive_value);
return;
}
this.name = info.name;

Loading…
Cancel
Save