Fix filters
This commit is contained in:
parent
7c615d941b
commit
086b09df12
@ -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}
|
||||||
|
@ -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}
|
||||||
|
Loading…
Reference in New Issue
Block a user