Toggles for filtering conferences with ranking

Author: sarendis56Created Apr 7, 2026Updated Apr 10, 2026

Is this an intentional design feature or a bug that one cannot select CCF-A/B/C conferences with Non-CCF (similarly for CORE and THCPL ranking) ones in the filtering? If you click on Non-CCF the selection of the CCF-A/B/C would be canceled. The code related in checkbox_button.rs:

rust
if value_for_update == NON_RANK_VALUE {
    set.clear();                  // selecting Non wipes A/B/C
} else {
    set.remove(NON_RANK_VALUE);  // selecting A/B/C removes Non
}