Skip to content

Commit 400a5b8

Browse files
TodoMVC - React - add id to input (#428)
1 parent 0dcab03 commit 400a5b8

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

resources/todomvc/architecture-examples/preact-complex/dist/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/todomvc/architecture-examples/preact-complex/dist/app.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/todomvc/architecture-examples/preact/dist/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/todomvc/architecture-examples/preact/dist/app.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/todomvc/architecture-examples/preact/src/app/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function TodoMain({ onChange, onToggle, onRemove, onSave, todos,
1010
return (
1111
<main class="main">
1212
<div class="toggle-all-container">
13-
<input class="toggle-all" type="checkbox" checked={activeTodoCount === 0} onChange={onChange} />
13+
<input class="toggle-all" type="checkbox" id="toggle-all" checked={activeTodoCount === 0} onChange={onChange} />
1414
<label class="toggle-all-label" htmlFor="toggle-all">
1515
Toggle All Input
1616
</label>

resources/todomvc/architecture-examples/react-complex/dist/app.bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/todomvc/architecture-examples/react-complex/dist/app.bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/todomvc/architecture-examples/react-redux-complex/dist/app.bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/todomvc/architecture-examples/react-redux-complex/dist/app.bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/todomvc/architecture-examples/react-redux/dist/app.bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)