Skip to content

Commit 8417741

Browse files
committed
style: lint
1 parent 54a5e4e commit 8417741

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

core/src/components/textarea/textarea.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import type { TextareaChangeEventDetail, TextareaInputEventDetail } from './text
4545
ionic: 'textarea.ionic.scss',
4646
},
4747
shadow: true,
48-
formAssociated: true
48+
formAssociated: true,
4949
})
5050
export class Textarea implements ComponentInterface {
5151
private nativeInput?: HTMLTextAreaElement;

core/src/utils/forms/validity.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ export const getValidityFlags = (validity: ValidityState): ValidityStateFlags =>
2020
* This delegates to the native element's built-in validation, which automatically
2121
* handles required, minlength, maxlength, and other constraints.
2222
*/
23-
export const reportValidityToElementInternals = (nativeElement: HTMLInputElement | HTMLTextAreaElement | null | undefined, internals: ElementInternals): void => {
23+
export const reportValidityToElementInternals = (
24+
nativeElement: HTMLInputElement | HTMLTextAreaElement | null | undefined,
25+
internals: ElementInternals
26+
): void => {
2427
if (!nativeElement) {
2528
return;
2629
}

0 commit comments

Comments
 (0)