From 057fe786bd84f6cbcdea00021ebf44ab1d66f73f Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 11 Apr 2026 21:21:56 +0100 Subject: [PATCH] style: apply formatter drift --- extensions/qa-lab/src/cli.ts | 2 +- extensions/qa-lab/web/src/styles.css | 10 ++++++++-- src/channels/plugins/setup-wizard-helpers.ts | 6 +++--- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/extensions/qa-lab/src/cli.ts b/extensions/qa-lab/src/cli.ts index 7d81041f15c..b520d0e6136 100644 --- a/extensions/qa-lab/src/cli.ts +++ b/extensions/qa-lab/src/cli.ts @@ -171,7 +171,7 @@ export function registerQaLabCli(program: Command) { "--cli-auth-mode ", "CLI backend auth mode for live Claude CLI runs: auto, api-key, or subscription", ) - .option("--parity-pack ", "Preset scenario pack; currently only \"agentic\" is supported") + .option("--parity-pack ", 'Preset scenario pack; currently only "agentic" is supported') .option("--scenario ", "Run only the named QA scenario (repeatable)", collectString, []) .option("--concurrency ", "Scenario worker concurrency", (value: string) => Number(value), diff --git a/extensions/qa-lab/web/src/styles.css b/extensions/qa-lab/web/src/styles.css index 62ae76ad334..21db950ebe3 100644 --- a/extensions/qa-lab/web/src/styles.css +++ b/extensions/qa-lab/web/src/styles.css @@ -359,7 +359,10 @@ select { border-right: 1px solid var(--border); background: var(--bg-sidebar); overflow: hidden; - transition: width 140ms ease, min-width 140ms ease, border-color 140ms ease; + transition: + width 140ms ease, + min-width 140ms ease, + border-color 140ms ease; } .app-shell--sidebar-collapsed .sidebar { @@ -2132,7 +2135,10 @@ select { opacity: 0; max-height: 0; pointer-events: none; - transition: opacity 120ms ease, max-height 120ms ease, margin-top 120ms ease; + transition: + opacity 120ms ease, + max-height 120ms ease, + margin-top 120ms ease; } .capture-timeline-lane:hover .capture-timeline-lane-compact-meta, diff --git a/src/channels/plugins/setup-wizard-helpers.ts b/src/channels/plugins/setup-wizard-helpers.ts index 44f03a3d8f7..9878e8363cb 100644 --- a/src/channels/plugins/setup-wizard-helpers.ts +++ b/src/channels/plugins/setup-wizard-helpers.ts @@ -1377,9 +1377,9 @@ export function createNestedChannelParsedAllowFromPrompt(params: { getExistingAllowFrom: ({ cfg }: { cfg: OpenClawConfig }) => params.getExistingAllowFrom?.(cfg) ?? ( - (cfg.channels?.[params.channel] as Record | undefined)?.[ - params.section - ] as { allowFrom?: Array } | undefined + (cfg.channels?.[params.channel] as Record | undefined)?.[params.section] as + | { allowFrom?: Array } + | undefined )?.allowFrom ?? [], ...(params.mergeEntries ? { mergeEntries: params.mergeEntries } : {}),