Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit de82cf4

Browse files
committed
fix(packages/core): sidecar plain text handler should not use normal-text css class
Fixes #2907
1 parent abbfbf4 commit de82cf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/webapp/views/sidecar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ export const showCustom = async (tab: Tab, custom: CustomSpec, options?: ExecOpt
856856
padding.classList.add('padding-content', 'scrollable')
857857

858858
const pre = document.createElement('pre')
859-
pre.classList.add('pre-wrap', 'normal-text', 'sans-serif')
859+
pre.classList.add('pre-wrap', 'sans-serif')
860860
pre.appendChild(document.createTextNode(custom.content))
861861

862862
padding.appendChild(pre)

0 commit comments

Comments
 (0)