Skip to content

Commit

Permalink
chore: fix more eslint --fix mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbarsukov committed Feb 29, 2024
1 parent db451ad commit c91650e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ import {TuiInputModule} from '@taiga-ui/kit';
export class NestedDocExample1 {
protected value = '';

protected readonly nameMask: MaskitoOptions = {
public readonly nameMask: MaskitoOptions = {
mask: /^[a-zA-Z\s]+$/,
postprocessors: [
({value, selection}) => ({value: value.toUpperCase(), selection}),
],
};

protected readonly predicate: MaskitoElementPredicate = element =>
public readonly predicate: MaskitoElementPredicate = element =>
element.querySelector<HTMLInputElement>('tui-input input')!;
}

0 comments on commit c91650e

Please sign in to comment.