Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
- Files are no longer displayed in duplicate.
  • Loading branch information
vrtmrz committed Jan 11, 2023
1 parent 708a00b commit f156498
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion TreeItemComponent.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
isAutoExpandTree,
omittedTags,
renderSpecialTag,
unique,
} from "./util";
import type { TagInfoDict } from "./types";
export let entry: TagFolderItem;
Expand Down Expand Up @@ -227,7 +228,7 @@
cx = [...cx, ...entry.descendants];
}
}
children = cx;
children = unique(cx);
}
}
let entryLeftTags = [] as string[];
Expand Down

0 comments on commit f156498

Please sign in to comment.