Skip to content

Commit

Permalink
chore(types): update typings for analysis task (#3298)
Browse files Browse the repository at this point in the history
this commit updates the typings for the analysis task. the team
re-enabled these tasks/tests (for the most part) in #3263.
at the same time, a commit that updates typings for onInput
events was sitting in the v3.0.0-dev branch,
#3135

upon merging main into v3.0.0-dev, the build broke. this commit fixes
the typings to align with the latter commit.
  • Loading branch information
rwaskiewicz committed Jan 25, 2023
1 parent 38198f7 commit 3d16b41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/todo-app/src/components/app-root/app-root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class AppRoot {
<section class="main" hidden={!list.length}>
<input
id="toggle-all"
onInput={(e: CustomEvent) => {
onInput={(e: InputEvent) => {
this.list = list.map((item) => {
item.checked = !!(e.target as HTMLInputElement).checked;
return item;
Expand Down

0 comments on commit 3d16b41

Please sign in to comment.