Store accumulator metadata per entry

This commit is contained in:
2026-06-25 06:37:52 +02:00
parent de4ac97665
commit a60258dc4c
2 changed files with 63 additions and 17 deletions
+2 -1
View File
@@ -64,7 +64,8 @@ function entryLabel(entry) {
const id = entry?.id ? ` ${entry.id}` : "";
const image = entry?.has_image ? " image" : " value";
const shape = Array.isArray(entry?.shape) && entry.shape.length >= 2 ? ` ${entry.shape[1]}x${entry.shape[0]}` : "";
return `#${index}${id}${image}${shape}`.trim();
const metadata = entry?.has_metadata ? " metadata" : "";
return `#${index}${id}${image}${shape}${metadata}`.trim();
}
function setStatus(node, status) {