Skip to content

Commit 69a9158

Browse files
committed
Remove template-no-element-event-actions change (belongs in fix/2429)
1 parent 75d0478 commit 69a9158

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

lib/rules/template-no-element-event-actions.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ module.exports = {
5858
}
5959
} else {
6060
// Flag any mustache value on event attributes
61-
if (attr.value?.type === 'GlimmerMustacheStatement') {
61+
if (
62+
attr.value?.type === 'GlimmerMustacheStatement' ||
63+
attr.value?.type === 'GlimmerConcatStatement'
64+
) {
6265
context.report({ node: attr, messageId: 'noElementEventActions' });
6366
}
6467
}

0 commit comments

Comments
 (0)