diff --git a/services/web-ui/public/index.html b/services/web-ui/public/index.html
index 0356c08..cce9239 100644
--- a/services/web-ui/public/index.html
+++ b/services/web-ui/public/index.html
@@ -502,7 +502,7 @@
-
+
@@ -710,6 +710,7 @@
+ ${asset.status === 'error' ? `` : ''}
@@ -757,6 +758,13 @@
else toast('Delete failed', r.error, 'error');
}
+ async function handleRetryAsset(id, e) {
+ e.stopPropagation();
+ const r = await retryAsset(id);
+ if (r.success) { toast('Asset queued for reprocessing', '', 'success'); loadAssets(); }
+ else toast('Retry failed', r.error, 'error');
+ }
+
function openInEditor(assetId, e) {
e.stopPropagation();
const projectId = state.currentProjectId;