Skip to content

Commit fac185b

Browse files
committed
chore: fix typo
1 parent fbb9d85 commit fac185b

File tree

1 file changed

+1
-1
lines changed
  • packages/runtime-dom/src/modules

1 file changed

+1
-1
lines changed

packages/runtime-dom/src/modules/props.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export function patchDOMProp(
3535
const newValue =
3636
value == null
3737
? // #11647: value should be set as empty string for null and undefined,
38-
// but <input type="checkbox"> should be set as 'no'.
38+
// but <input type="checkbox"> should be set as 'on'.
3939
el.type === 'checkbox'
4040
? 'on'
4141
: ''

0 commit comments

Comments
 (0)