drop withChildren flag — folded into --with-context by pql
test / unit + widget + golden + a11y (push) Failing after 36s
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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-04-24 10:59:34 +02:00
co-authored by Claude
parent b8c8826b9e
commit 054808c634
2 changed files with 0 additions and 3 deletions
-1
View File
@@ -202,7 +202,6 @@ void registerPqlCommands(DaemonDispatcher d, PqlClient pql) {
id,
withContext: req.args['withContext'] as bool? ?? false,
withBlockers: req.args['withBlockers'] as bool? ?? false,
withChildren: req.args['withChildren'] as bool? ?? false,
);
return IpcResponse.ok(id: req.id, data: result);
} on PqlException catch (e) {
-2
View File
@@ -126,12 +126,10 @@ class PqlClient {
String id, {
bool withContext = false,
bool withBlockers = false,
bool withChildren = false,
}) async {
final args = ['ticket', 'show', id];
if (withContext) args.add('--with-context');
if (withBlockers) args.add('--with-blockers');
if (withChildren) args.add('--with-children');
return _runObject(args);
}