fix decision detail: pql decisions show, not read
test / unit + widget + golden + a11y (push) Failing after 28s
test / integration_test (xvfb) (push) Has been skipped
test / bundle smoke (xvfb 5s) (push) Has been skipped
test / daemon subprocess + web WASM smoke (push) Has been skipped

The pql CLI command is 'decisions show', not 'decisions read'.
The client was sending the wrong subcommand.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jeroen Schweitzer
2026-04-27 08:59:33 +02:00
co-authored by Claude Opus 4.6
parent acc7407fa5
commit 63e15d99cf
2 changed files with 101 additions and 101 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ class PqlClient {
}
Future<Map<String, Object?>> decisionRead(String id) async {
return _runObject(['decisions', 'read', id]);
return _runObject(['decisions', 'show', id]);
}
Future<List<Map<String, Object?>>> decisionCoverage() async {