mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-14 10:41:23 +00:00
style: apply formatter drift
This commit is contained in:
@@ -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),
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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 } : {}),
|
||||
|
||||
Reference in New Issue
Block a user