Skip to content

Commit 8df56ce

Browse files
committed
fix: always show raw config in settings (fixes #94202)
Previously, the raw config textarea was hidden when sensitive values were detected, making the JSON completely invisible. This change forces the textarea to always be visible, aligning with user expectations that the JSON should be displayed (at least after scrolling). The reveal button remains but is no longer required to view the raw config. Issue: #94202
1 parent 7048906 commit 8df56ce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/src/ui/views/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1841,7 +1841,7 @@ export function renderConfig(props: ConfigProps) {
18411841
[],
18421842
props.uiHints,
18431843
);
1844-
const blurred = sensitiveCount > 0 && !cvs.rawRevealed;
1844+
const blurred = false; // Always show raw config (fix #94202)
18451845
return html`
18461846
${formUnsafe
18471847
? html`

0 commit comments

Comments
 (0)