Skip to content

Commit 378c589

Browse files
committed
fix: fixing _isArray accessor in value setter
1 parent 3cb938a commit 378c589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api-property-form-item.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ class ApiPropertyFormItem extends ValidatableMixin(LitElement) {
346346
}
347347
this._value = value;
348348
this.requestUpdate('value', old);
349-
this._isArrayChanged(this.isArray, value);
349+
this._isArrayChanged(this._isArray, value);
350350
const opts = {
351351
detail: {
352352
value

0 commit comments

Comments
 (0)