We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d04605a commit c4a139aCopy full SHA for c4a139a
src/app/event-display/event-loader.ts
@@ -394,8 +394,12 @@ export class EventLoader extends PhoenixLoader {
394
395
const file = await openFile(this.fileURL);
396
const tree = await file.readObject(treeName);
397
- const existingBranches = tree.fBranches.arr.map((branch: any) => branch.fName);
398
- this.branches = this.branches.filter((branch: string) => existingBranches.includes(branch))
+ const existingBranches = tree.fBranches.arr.map(
+ (branch: any) => branch.fName
399
+ );
400
+ this.branches = this.branches.filter((branch: string) =>
401
+ existingBranches.includes(branch)
402
403
this.entries = tree.fEntries;
404
405
// Use Promise.all and map to wait for all promises to resolve.
0 commit comments