1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

store/dash: improve bookworm regression filter (#2342)

This commit is contained in:
Alexandre Aubin 2024-05-15 09:27:00 +02:00 committed by GitHub
parent c01acf54d6
commit dbebdff359
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -264,7 +264,7 @@
} }
else if (filterName == "regressions_bookworm") else if (filterName == "regressions_bookworm")
{ {
if ((entries[i].dataset.publicLevel >= 6) && (entries[i].dataset.nextdebianCiLevel < 6)) if ((entries[i].dataset.publicLevel >= 6) && (entries[i].dataset.nextdebianCiLevel < 6) && (entries[i].dataset.nextdebianCiLevel != entries[i].dataset.mainCiLevel))
{ {
entries[i].classList.remove("hidden"); entries[i].classList.remove("hidden");
nb_found++; nb_found++;