惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
IT之家
IT之家
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
U
Unit 42
爱范儿
爱范儿
博客园 - 聂微东
F
Fortinet All Blogs
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
雷峰网
雷峰网
B
Blog RSS Feed
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Engineering at Meta
Engineering at Meta
H
Hackread – Cybersecurity News, Data Breaches, AI and More

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix: UI glitch: config is not visible (#96145) · openclaw...
clawsweeper · 2026-06-24 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -473,6 +473,36 @@ describe("config view", () => {

473473

expect(content.scrollLeft).toBe(0);

474474

});

475475
476+

it("resets config content scroll when switching from form to raw mode", async () => {

477+

const container = document.createElement("div");

478+

document.body.append(container);

479+
480+

try {

481+

const renderCase = (overrides: Partial<ConfigProps>) =>

482+

render(renderConfig({ ...baseProps(), ...overrides }), container);

483+
484+

renderCase({ formMode: "form" });

485+
486+

const content = queryRequired(container, ".config-content", HTMLElement);

487+

content.scrollTop = 320;

488+

content.scrollLeft = 18;

489+

content.scrollTo = vi.fn(({ top, left }: { top?: number; left?: number }) => {

490+

content.scrollTop = top ?? content.scrollTop;

491+

content.scrollLeft = left ?? content.scrollLeft;

492+

}) as typeof content.scrollTo;

493+
494+

renderCase({ formMode: "raw" });

495+

await Promise.resolve();

496+
497+

expect(content["scrollTo"]).toHaveBeenCalledOnce();

498+

expect(content["scrollTo"]).toHaveBeenCalledWith({ top: 0, left: 0, behavior: "auto" });

499+

expect(content.scrollTop).toBe(0);

500+

expect(content.scrollLeft).toBe(0);

501+

} finally {

502+

container.remove();

503+

}

504+

});

505+
476506

it("can hide the root tab for scoped settings surfaces", () => {

477507

const { container } = renderConfigView({

478508

activeSection: "channels",

Original file line numberDiff line numberDiff line change

@@ -1184,6 +1184,7 @@ function createConfigEphemeralState(): ConfigEphemeralState {

11841184
11851185

const cvs = createConfigEphemeralState();

11861186

let lastConfigContextKey: string | null = null;

1187+

let lastFormModeForScroll: ConfigProps["formMode"] | null = null;

11871188
11881189

function resetConfigEphemeralState() {

11891190

Object.assign(cvs, createConfigEphemeralState());

@@ -1222,6 +1223,7 @@ function toggleSensitivePathReveal(path: Array<string | number>) {

12221223

export function resetConfigViewStateForTests() {

12231224

resetConfigEphemeralState();

12241225

lastConfigContextKey = null;

1226+

lastFormModeForScroll = null;

12251227

}

12261228
12271229

export function renderConfig(props: ConfigProps) {

@@ -1237,6 +1239,31 @@ export function renderConfig(props: ConfigProps) {

12371239

const rawAvailable = props.rawAvailable ?? true;

12381240

const formMode = showModeToggle && rawAvailable ? props.formMode : "form";

12391241

const requestUpdate = props.onRequestUpdate ?? (() => {});

1242+

// Scroll helper: target-based (nav clicks) with global fallback (form/raw toggle)

1243+

const resetContentScroll = (target: EventTarget | null) => {

1244+

queueMicrotask(() => {

1245+

const origin = target instanceof Element ? target : null;

1246+

const content =

1247+

origin?.closest(".config-main")?.querySelector<HTMLElement>(".config-content") ??

1248+

globalThis.document?.querySelector<HTMLElement>(".config-content");

1249+

if (!content) {

1250+

return;

1251+

}

1252+

if (typeof content.scrollTo === "function") {

1253+

content.scrollTo({ top: 0, left: 0, behavior: "auto" });

1254+

return;

1255+

}

1256+

content.scrollTop = 0;

1257+

content.scrollLeft = 0;

1258+

});

1259+

};

1260+
1261+

// Reset scroll position when switching between form and raw mode

1262+

if (lastFormModeForScroll !== null && lastFormModeForScroll !== formMode) {

1263+

resetContentScroll(null);

1264+

}

1265+

lastFormModeForScroll = formMode;

1266+
12401267

const currentContextKey = configContextKey(props);

12411268

if (lastConfigContextKey !== currentContextKey) {

12421269

resetConfigEphemeralState();

@@ -1301,24 +1328,6 @@ export function renderConfig(props: ConfigProps) {

13011328

const settingsLayout = props.settingsLayout ?? "tabs";

13021329

const allCategories = [...visibleCategories, ...(otherCategory ? [otherCategory] : [])];

13031330
1304-

const resetContentScroll = (target: EventTarget | null) => {

1305-

queueMicrotask(() => {

1306-

const origin = target instanceof Element ? target : null;

1307-

const content = origin

1308-

?.closest(".config-main")

1309-

?.querySelector<HTMLElement>(".config-content");

1310-

if (!content) {

1311-

return;

1312-

}

1313-

if (typeof content.scrollTo === "function") {

1314-

content.scrollTo({ top: 0, left: 0, behavior: "auto" });

1315-

return;

1316-

}

1317-

content.scrollTop = 0;

1318-

content.scrollLeft = 0;

1319-

});

1320-

};

1321-
13221331

function renderAccordionNav() {

13231332

return html`

13241333

<div class="config-accordion-nav">