Skip to content

Commit 9a9d32e

Browse files
committed
fix(lint): ran lint fix
1 parent 6c374c9 commit 9a9d32e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

core/src/components/checkbox/checkbox.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ export class Checkbox implements ComponentInterface {
205205
*/
206206
private onDivLabelClick = (ev: MouseEvent) => {
207207
ev.stopPropagation();
208-
}
208+
};
209209

210210
private getHintTextID(): string | undefined {
211211
const { el, helperText, errorText, helperTextId, errorTextId } = this;

core/src/components/input/input.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ export class Input implements ComponentInterface {
730730
if (ev.target === ev.currentTarget) {
731731
ev.stopPropagation();
732732
}
733-
}
733+
};
734734

735735
/**
736736
* Renders the border container

core/src/components/select/select.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ export class Select implements ComponentInterface {
921921
if (ev.target === ev.currentTarget) {
922922
ev.stopPropagation();
923923
}
924-
}
924+
};
925925

926926
/**
927927
* Renders the border container

core/src/components/textarea/textarea.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ export class Textarea implements ComponentInterface {
582582
if (ev.target === ev.currentTarget) {
583583
ev.stopPropagation();
584584
}
585-
}
585+
};
586586

587587
/**
588588
* Renders the border container when fill="outline".

core/src/components/toggle/toggle.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ export class Toggle implements ComponentInterface {
274274
*/
275275
private onDivLabelClick = (ev: MouseEvent) => {
276276
ev.stopPropagation();
277-
}
277+
};
278278

279279
private onFocus = () => {
280280
this.ionFocus.emit();

0 commit comments

Comments
 (0)