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:
parent
c01acf54d6
commit
dbebdff359
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@
|
|||
}
|
||||
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");
|
||||
nb_found++;
|
||||
|
|
Loading…
Add table
Reference in a new issue