fix(#2121): rebuild POST from agent term also missing api/ prefix (mara audit)

This commit is contained in:
damocles 2026-07-01 19:23:59 +02:00 committed by mara
commit ebb85e6291

View file

@ -224,7 +224,7 @@ window.marked = marked;
closeOverflowMenu();
const f = document.createElement('form');
f.method = 'POST';
f.action = `${dashUrl}rebuild/${label}`;
f.action = `${dashUrl}api/rebuild/${label}`;
document.body.appendChild(f);
f.submit();
});