Skip to content

Commit

Permalink
style: linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-berger committed Aug 3, 2024
1 parent d391ed7 commit f16a173
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/client/src/app/template-element.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ export function TemplateElement(props: TemplateElementProps) {

for (const selectorElement of selectorElements) {
if (selectorElement) {
selectorElement.addEventListener(eventConfig.type, eventCallback);
selectorElement.addEventListener(
eventConfig.type,
eventCallback,
);

listeners.push({
eventType: eventConfig.type,
Expand Down

0 comments on commit f16a173

Please sign in to comment.