Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit fadbba1

Browse files
jbedarddevversion
authored andcommitted
fix: fix ts compiler error
1 parent 77772dd commit fadbba1

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

bazel-bin

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/private/var/tmp/_bazel_jason/f9d0384cd6d28039b4c8298c18ef9ff5/execroot/__main__/bazel-out/darwin-fastbuild/bin

bazel-material.angular.io

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/private/var/tmp/_bazel_jason/f9d0384cd6d28039b4c8298c18ef9ff5/execroot/__main__

bazel-testlogs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/private/var/tmp/_bazel_jason/f9d0384cd6d28039b4c8298c18ef9ff5/execroot/__main__/bazel-out/darwin-fastbuild/testlogs

scenes/src/app/scenes/slider/slider-scene.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ export class SliderScene implements AfterViewInit {
1313
@ViewChild('volume') volume!: MatSlider;
1414

1515
ngAfterViewInit() {
16-
this.volume.focus();
16+
// TODO: update to new API in Angular v15
17+
(this.volume as any).focus();
1718
}
1819
}
1920

0 commit comments

Comments
 (0)