fix: openSettings message passes section in values object

The webviewMessageHandler was passing section as 'tab' property but
App.tsx expects it in 'values.section'. This fixes the navigation from
CodeIndexPopover 'Configure in Settings' link to the indexing tab.
This commit is contained in:
Hannes Rudolph 2026-01-23 20:17:06 -07:00
parent 761b72892d
commit 2b1e10c530

View file

@ -2857,7 +2857,7 @@ export const webviewMessageHandler = async (
provider.postMessageToWebview({
type: "action",
action: "settingsButtonClicked",
tab: message.section,
values: { section: message.section },
})
break
}