Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,8 @@ public int compare(SubmissionListColumn svc1, SubmissionListColumn svc2) {

if (filterString == null) {
sqlBuilder.append("a.email IS NULL");
} else if (filterString.equalsIgnoreCase("null")) {
sqlBuilder.append("a.email IS NULL");
Comment on lines 799 to +802

@cstarcher cstarcher May 17, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@smutniak I prefer the Copilot suggested syntax.

} else if (submissionListColumn.getExactMatch()) {
sqlBuilder.append("a.email = '").append(filterString).append("'");
} else {
Comment on lines 803 to 805
Expand Down
Loading