mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-10-23 06:46:11 +08:00
Add completed state
This commit is contained in:
@@ -38,7 +38,14 @@ function useQuery(): URLSearchParams {
|
||||
return new URLSearchParams(useLocation().search);
|
||||
}
|
||||
|
||||
const validStatus = ["active", "pending", "scheduled", "retry", "archived"];
|
||||
const validStatus = [
|
||||
"active",
|
||||
"pending",
|
||||
"scheduled",
|
||||
"retry",
|
||||
"archived",
|
||||
"completed",
|
||||
];
|
||||
const defaultStatus = "active";
|
||||
|
||||
function TasksView(props: ConnectedProps<typeof connector>) {
|
||||
|
Reference in New Issue
Block a user