Skip to content

Commit db164c8

Browse files
committed
fix lint
1 parent b1e9b87 commit db164c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib/chips/chip-list.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ describe('MdChipList', () => {
246246
tick();
247247

248248
expect(chipListInstance._tabIndex).toBe(4, 'Expected tabIndex to be reset back to 4');
249-
}))
249+
}));
250250
});
251251
});
252252
});

src/lib/chips/chip-list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class MdChipList implements AfterContentInit, OnDestroy {
7878

7979
/** User defined tab index.
8080
* When it is not null, use user defined tab index. Otherwise use _tabIndex */
81-
_userTabIndex : number | null = null;
81+
_userTabIndex: number | null = null;
8282

8383
/** The FocusKeyManager which handles focus. */
8484
_keyManager: FocusKeyManager;

0 commit comments

Comments
 (0)