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

Commit 061580c

Browse files
refactor: rename function
1 parent 3863f43 commit 061580c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

studio/src/app/pages/editor/app-editor/app-editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class AppEditor {
9393
this.slidesFetched = true;
9494
});
9595

96-
this.busySubscription = this.busyService.watchSlideBusy().subscribe(async (slide: HTMLElement) => {
96+
this.busySubscription = this.busyService.watchSlideEditable().subscribe(async (slide: HTMLElement) => {
9797
await this.contentEditable(slide);
9898
});
9999
}

studio/src/app/services/editor/busy/busy.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export class BusyService {
2626
this.deckBusySubject.next(busy);
2727
}
2828

29-
watchSlideBusy(): Observable<HTMLElement> {
29+
watchSlideEditable(): Observable<HTMLElement> {
3030
return this.slideEditableSubject.asObservable();
3131
}
3232

0 commit comments

Comments
 (0)