Store accumulator metadata per entry
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user