fixing false positives ui
Deploy / deploy (push) Successful in 11s

This commit is contained in:
2026-05-16 11:30:56 +02:00
parent 9273b30e47
commit 201c786ae8
2 changed files with 8 additions and 2 deletions
+2 -1
View File
@@ -1036,7 +1036,8 @@ let fpItems = [];
async function loadFalsePositives() {
try {
fpItems = (await api('/false-positives')) || [];
const res = await api('/false-positives');
fpItems = res.data || res || [];
renderFalsePositives();
} catch (e) { console.error('fp load error', e); }
}