We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d59c12f + 71eeca0 commit 56e9ac8Copy full SHA for 56e9ac8
src/packages/core/components/code-block/code-block.element.ts
@@ -86,7 +86,7 @@ export class UmbCodeBlockElement extends LitElement {
86
pre,
87
code {
88
word-wrap: normal;
89
- white-space: pre-line;
+ white-space: pre;
90
}
91
92
#header {
src/packages/sysinfo/components/sysinfo.element.ts
@@ -78,7 +78,7 @@ export class UmbSysinfoElement extends UmbModalBaseElement {
78
${when(
79
this._loading,
80
() => html`<uui-loader-bar></uui-loader-bar>`,
81
- () => html` <umb-code-block id="codeblock"> ${this._systemInformation} </umb-code-block> `,
+ () => html` <umb-code-block id="codeblock">${this._systemInformation}</umb-code-block> `,
82
)}
83
84
<uui-button
0 commit comments