fix: listIssuesCmd was sending {query} but Rust expects {filter} — caused dashboard to always show 0 open issues
Some checks failed
Auto Tag / auto-tag (push) Successful in 4s
Release / build-macos-arm64 (push) Successful in 3m45s
Test / rust-fmt-check (push) Failing after 10m37s
Release / build-linux-arm64 (push) Failing after 10m6s
Test / rust-clippy (push) Successful in 7m12s
Test / rust-tests (push) Successful in 7m56s
Test / frontend-typecheck (push) Successful in 1m28s
Test / frontend-tests (push) Successful in 1m12s
Release / build-linux-amd64 (push) Successful in 16m17s
Release / build-windows-amd64 (push) Successful in 13m11s
Some checks failed
Auto Tag / auto-tag (push) Successful in 4s
Release / build-macos-arm64 (push) Successful in 3m45s
Test / rust-fmt-check (push) Failing after 10m37s
Release / build-linux-arm64 (push) Failing after 10m6s
Test / rust-clippy (push) Successful in 7m12s
Test / rust-tests (push) Successful in 7m56s
Test / frontend-typecheck (push) Successful in 1m28s
Test / frontend-tests (push) Successful in 1m12s
Release / build-linux-amd64 (push) Successful in 16m17s
Release / build-windows-amd64 (push) Successful in 13m11s
This commit is contained in:
parent
944b14e5c4
commit
5b37bd3435
@ -280,7 +280,7 @@ export const getIssueCmd = (issueId: string) =>
|
||||
invoke<IssueDetail>("get_issue", { issueId });
|
||||
|
||||
export const listIssuesCmd = (query: IssueListQuery) =>
|
||||
invoke<IssueSummary[]>("list_issues", { query });
|
||||
invoke<IssueSummary[]>("list_issues", { filter: query });
|
||||
|
||||
export const updateIssueCmd = (
|
||||
issueId: string,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user