IO-3431 Add Tags to Images and Documents

Signed-off-by: Allan Carr <allan@imexsystems.ca>
This commit is contained in:
Allan Carr
2026-01-12 13:25:26 -08:00
parent 9b62633ba6
commit 68dd7f33ab
2 changed files with 28 additions and 1 deletions

View File

@@ -67,6 +67,7 @@ export function JobsDocumentsLocalGallery({
src: val.thumbnail,
height: val.thumbnailHeight,
width: val.thumbnailWidth,
tags: [{ value: val.filename, title: val.filename }],
...(val.optimized && { src: val.optimized, fullsize: val.src })
});
if (val.optimized) optimized = true;
@@ -77,7 +78,8 @@ export function JobsDocumentsLocalGallery({
src: val.thumbnail,
height: val.thumbnailHeight,
width: val.thumbnailWidth,
tags: [{ value: val.filename, title: val.filename }]
tags: [
{ value: val.filename, title: val.filename }]
});
}
return acc;