1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-24 07:12:57 +00:00

Fixed breadcrumbs generation

This commit is contained in:
2024-08-12 19:55:11 +04:00
parent 68d1d726af
commit 4635ccdb2b

View File

@@ -27,7 +27,7 @@
let entryPath = entry;
if (resultCrumbs.length) {
entryPath = resultCrumbs[resultCrumbs.length - 1] + "/" + entryPath;
entryPath = resultCrumbs[resultCrumbs.length - 1][1] + "/" + entryPath;
}
resultCrumbs.push([entry, entryPath]);