Fix filters

This commit is contained in:
ferreo 2024-07-29 23:50:41 +01:00
parent 7c615d941b
commit 086b09df12
2 changed files with 2 additions and 8 deletions

View File

@ -103,9 +103,7 @@ const Packages: React.FC = () => {
"Stale", "Stale",
"Error", "Error",
"Missing", "Missing",
"Current", "Current"
"Queued",
"Building",
].map((option) => ( ].map((option) => (
<SelectItem key={option} value={option}> <SelectItem key={option} value={option}>
{option} {option}

View File

@ -112,12 +112,8 @@ const Queue: React.FC = () => {
<SelectContent> <SelectContent>
<SelectItem value="All">All</SelectItem> <SelectItem value="All">All</SelectItem>
{[ {[
"Stale",
"Error",
"Missing",
"Current",
"Queued", "Queued",
"Building", "Building"
].map((option) => ( ].map((option) => (
<SelectItem key={option} value={option}> <SelectItem key={option} value={option}>
{option} {option}