Index: openacs-4/packages/proctoring-support/lib/proctoring-display.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/proctoring-support/lib/Attic/proctoring-display.adp,v diff -u -r1.1.2.29 -r1.1.2.30 --- openacs-4/packages/proctoring-support/lib/proctoring-display.adp 3 Mar 2022 09:35:35 -0000 1.1.2.29 +++ openacs-4/packages/proctoring-support/lib/proctoring-display.adp 3 Mar 2022 11:00:46 -0000 1.1.2.30 @@ -343,11 +343,15 @@ } else if (filters.status === 'unflagged' && !e.classList.contains('unflagged')) { // - unflagged artifacts return true; - } else if (filters.status === 'reviewed' && !e.querySelector("[data-msg]")) { - // - artifacts with a comment + } else if (filters.status === 'reviewed' && + !(e.classList.contains('flagged') || + e.classList.contains('unflagged'))) { + // - artifacts with a review outcome return true; - } else if (filters.status === 'not-reviewed' && e.querySelector("[data-msg]")) { - // - artifacts without a comment + } else if (filters.status === 'not-reviewed' && + (e.classList.contains('flagged') || + e.classList.contains('unflagged'))) { + // - artifacts without a review outcome return true; } var timestamp = e.querySelector("[name=title]").textContent;