Skip to content

Commit 6601ada

Browse files
jbedarddevversion
authored andcommittedNov 29, 2022
fix: fix ts compiler error
1 parent c321e07 commit 6601ada

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed
 

‎material.angular.io/bazel-bin

+1
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
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/private/var/tmp/_bazel_jason/f9d0384cd6d28039b4c8298c18ef9ff5/execroot/__main__

‎material.angular.io/bazel-testlogs

+1
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

‎material.angular.io/scenes/src/app/scenes/slider/slider-scene.ts

+2-1
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)
Please sign in to comment.