Skip to content

Commit a96531d

Browse files
committed
chore: lint fixes
1 parent e1d2553 commit a96531d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/tabs/index.android.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ export class Tabs extends TabNavigation<TabsBar> {
8787
protected override setTabBarItems(tabItems: com.nativescript.material.core.TabItemSpec[]) {
8888
this.mTabsBar.setItems(tabItems);
8989
// The setTimeout below is necessary to ensure the scrollToTab is executed only after
90-
// all tabs are recreated. The tabs' recreation is triggered by the setItems call above.
90+
// all tabs are recreated. The tabs' recreation is triggered by the setItems call above.
9191
//
92-
// The setTimeout is necessary to fix an Android issue:
92+
// The setTimeout is necessary to fix an Android issue:
9393
// Android Issue: Active Tab item not displaying after nav back
9494
// Reproduce steps:
9595
// 1. On app with multiple (overflown) tab items, Switch to the last tab item

src/textfield/textfield.ios.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ declare module '@nativescript/core/ui/text-field' {
123123
export class TextField extends TextFieldBase {
124124
nativeViewProtected: MDCBaseTextField;
125125
nativeTextViewProtected: MDCBaseTextField;
126+
//@ts-ignore
126127
public readonly style: Style & { variant: 'outline' | 'underline' | 'filled' };
127128
public nsdigits?: NSCharacterSet;
128129
firstEdit: boolean;

src/textview/textview.ios.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ export class TextView extends TextViewBase {
154154
nativeViewProtected: MDCMultilineTextField;
155155
private _controller: MDCTextInputControllerBase;
156156
public _isEditing: boolean;
157+
//@ts-ignore
157158
public readonly style: Style & { variant: 'outline' | 'underline' | 'filled' };
158159

159160
public clearFocus() {

0 commit comments

Comments
 (0)