chore: lint

This commit is contained in:
Mo 2022-04-12 09:29:43 -05:00
parent 369ece1a50
commit dc9c1ea0fc
No known key found for this signature in database
GPG Key ID: 034B13B1644297E1
2 changed files with 10 additions and 8 deletions

View File

@ -44,6 +44,7 @@ export class DesktopManager
async onAppEvent(eventName: ApplicationEvent) {
super.onAppEvent(eventName);
if (eventName === ApplicationEvent.LocalDataLoaded) {
this.dataLoaded = true;
this.bridge.onInitialDataLoad();
@ -74,6 +75,7 @@ export class DesktopManager
if (!this.isDesktop) {
return;
}
Promise.all(
components.map((component) => {
return this.convertComponentForTransmission(component);

View File

@ -357,20 +357,20 @@ export class AppState {
const selectedTag = this.tags.selected;
const isBrowswingTrashedNotes =
selectedTag instanceof SmartView &&
selectedTag.uuid === SystemViewId.TrashedNotes;
const isBrowsingArchivedNotes =
selectedTag instanceof SmartView &&
selectedTag.uuid === SystemViewId.ArchivedNotes;
for (const note of changedOrInserted) {
const noteController = this.noteControllerForNote(note.uuid);
if (!noteController) {
continue;
}
const isBrowswingTrashedNotes =
selectedTag instanceof SmartView &&
selectedTag.uuid === SystemViewId.TrashedNotes;
const isBrowsingArchivedNotes =
selectedTag instanceof SmartView &&
selectedTag.uuid === SystemViewId.ArchivedNotes;
if (
note.trashed &&
!isBrowswingTrashedNotes &&