File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
apps/codelab/src/app/admin/content/presentation-editor
preview/slide-preview/blank Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ export class ContentComponent {
19
19
this . contentService . state$
20
20
] ) . pipe (
21
21
map ( ( [ presentationId , presentations ] ) => {
22
- debugger ;
23
22
return presentations . find (
24
23
( p : ContentPresentation ) => p . id === presentationId
25
24
) ;
@@ -33,7 +32,6 @@ export class ContentComponent {
33
32
this . presentation$
34
33
] ) . pipe (
35
34
map ( ( [ slide , presentation ] ) => {
36
- debugger ;
37
35
return presentation . slides [ slide || 0 ] ;
38
36
} )
39
37
) ;
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export class BlankComponent implements OnInit {
9
9
constructor ( ) { }
10
10
11
11
ngOnInit ( ) : void {
12
+ // @ts -ignore: Debugger
12
13
debugger ;
13
14
}
14
15
}
You can’t perform that action at this time.
0 commit comments