Skip to content

Commit c189d3a

Browse files
committed
refactor(material/chips): fix lint errors
Updates to fix lint errors.
1 parent ca7670f commit c189d3a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/material/chips/chip-input.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,10 @@ export class MatChipInput implements MatChipTextControl, OnChanges, OnDestroy {
129129
/** The native input element to which this directive is attached. */
130130
readonly inputElement!: HTMLInputElement;
131131

132-
/** Default Screen-reader placeholder for the input if no placeholder or
133-
* ariaPlaceholder is provided. */
132+
/**
133+
* Default Screen-reader placeholder for the input if no placeholder or
134+
* ariaPlaceholder is provided.
135+
*/
134136
private readonly _defaultAriaPlaceholder = 'Enter input';
135137

136138
constructor(...args: unknown[]);
@@ -232,7 +234,8 @@ export class MatChipInput implements MatChipTextControl, OnChanges, OnDestroy {
232234
return !hasModifierKey(event) && new Set(this.separatorKeyCodes).has(event.keyCode);
233235
}
234236

235-
/** Checks whether placeholder is used, if not checks for ariaPlaceholder, and resorts
237+
/**
238+
* Checks whether placeholder is used, if not checks for ariaPlaceholder, and resorts
236239
* to default value if neither is provided.
237240
*/
238241
getAriaPlaceholder(): string | null {

0 commit comments

Comments
 (0)