Skip to content

Commit e4c90d7

Browse files
committed
Cursor bug bot fix
1 parent 829e298 commit e4c90d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mixins/extensions/DefaultValues.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default {
5656
name
5757
)}, this.vdata) || !!this.getValue(${JSON.stringify(name)}, data)`;
5858
const mountCheck = isCheckbox
59-
? `this.${safeDotName} === undefined`
59+
? `this.${safeDotName} == null`
6060
: `!this.${safeDotName}`;
6161
this.addData(screen, `${name}_was_filled__`, wasFilledCheck);
6262
this.addMounted(

0 commit comments

Comments
 (0)