Skip to content

Commit c224483

Browse files
committed
lint
1 parent 4233d76 commit c224483

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/cdk-experimental/popover-edit/popover-edit.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,8 +480,8 @@ describe('CDK Popover Edit', () => {
480480
expect(component.lensIsOpen()).toBe(false);
481481
}));
482482

483-
it('moves focus to the previous cell when focus leaves end of lens with cdkPopoverEditTabOut',
484-
fakeAsync(() => {
483+
it(`moves focus to the previous cell when focus leaves end of lens with
484+
cdkPopoverEditTabOut`, fakeAsync(() => {
485485
// Open the weight lens which has tab out behavior.
486486
component.openLens(0, 2);
487487

src/cdk-experimental/popover-edit/table-directives.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ export class CdkPopoverEditTabOut<C> extends CdkPopoverEdit<C> {
322322

323323
this.focusTrap.escapes().pipe(takeUntil(this.destroyed)).subscribe(direction => {
324324
if (this.editEventDispatcher.editRef) {
325-
this.editEventDispatcher.editRef.blur()
325+
this.editEventDispatcher.editRef.blur();
326326
}
327327

328328
this.focusDispatcher.moveFocusHorizontally(

0 commit comments

Comments
 (0)