style: apply formatter drift

This commit is contained in:
Peter Steinberger
2026-04-11 21:21:56 +01:00
parent b41091ac7f
commit 057fe786bd
3 changed files with 12 additions and 6 deletions

View File

@@ -171,7 +171,7 @@ export function registerQaLabCli(program: Command) {
"--cli-auth-mode <mode>",
"CLI backend auth mode for live Claude CLI runs: auto, api-key, or subscription",
)
.option("--parity-pack <name>", "Preset scenario pack; currently only \"agentic\" is supported")
.option("--parity-pack <name>", 'Preset scenario pack; currently only "agentic" is supported')
.option("--scenario <id>", "Run only the named QA scenario (repeatable)", collectString, [])
.option("--concurrency <count>", "Scenario worker concurrency", (value: string) =>
Number(value),

View File

@@ -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,

View File

@@ -1377,9 +1377,9 @@ export function createNestedChannelParsedAllowFromPrompt(params: {
getExistingAllowFrom: ({ cfg }: { cfg: OpenClawConfig }) =>
params.getExistingAllowFrom?.(cfg) ??
(
(cfg.channels?.[params.channel] as Record<string, unknown> | undefined)?.[
params.section
] as { allowFrom?: Array<string | number> } | undefined
(cfg.channels?.[params.channel] as Record<string, unknown> | undefined)?.[params.section] as
| { allowFrom?: Array<string | number> }
| undefined
)?.allowFrom ??
[],
...(params.mergeEntries ? { mergeEntries: params.mergeEntries } : {}),