Skip to content

Commit 4129f49

Browse files
Merge branch 'wysiwyg' into feature/side-panel-selection
2 parents 087ec27 + 5a6eaa5 commit 4129f49

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

apps/codelab/src/app/admin/content/presentation-editor/content.component.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ export class ContentComponent {
1717
this.contentService.state$
1818
]).pipe(
1919
map(([presentationId, presentations]) => {
20-
debugger;
2120
return presentations.find(
2221
(p: ContentPresentation) => p.id === presentationId
2322
);
@@ -31,7 +30,6 @@ export class ContentComponent {
3130
this.presentation$
3231
]).pipe(
3332
map(([slide, presentation]) => {
34-
debugger;
3533
return presentation.slides[slide || 0];
3634
})
3735
);

apps/codelab/src/app/admin/content/presentation-editor/preview/slide-preview/blank/blank.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ import { Component, OnInit } from '@angular/core';
66
styleUrls: ['./blank.component.css']
77
})
88
export class BlankComponent implements OnInit {
9-
constructor() {}
10-
119
ngOnInit(): void {
12-
debugger;
10+
console.assert(false);
1311
}
1412
}

0 commit comments

Comments
 (0)