Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add default case back in
  • Loading branch information
Jack Pope committed Mar 29, 2024
commit bba88838f56cb841a2f1b2d2d7301173a4f0a1cb
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,9 @@ function validateProperty(tagName, name, value, eventRegistry) {
case 'inert': {
break;
}
default: {
return true;
}
}
console.error(
'Received the string `%s` for the boolean attribute `%s`. ' +
Expand Down