Skip to content

Commit e986769

Browse files
committed
Remove spurious ConcatStatement check from template-no-element-event-actions
1 parent e20ba32 commit e986769

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

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

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

0 commit comments

Comments
 (0)