Skip to content

Commit 56e9ac8

Browse files
committed
Merge remote-tracking branch 'origin/release/14.3'
2 parents d59c12f + 71eeca0 commit 56e9ac8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/packages/core/components/code-block/code-block.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class UmbCodeBlockElement extends LitElement {
8686
pre,
8787
code {
8888
word-wrap: normal;
89-
white-space: pre-line;
89+
white-space: pre;
9090
}
9191
9292
#header {

src/packages/sysinfo/components/sysinfo.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class UmbSysinfoElement extends UmbModalBaseElement {
7878
${when(
7979
this._loading,
8080
() => html`<uui-loader-bar></uui-loader-bar>`,
81-
() => html` <umb-code-block id="codeblock"> ${this._systemInformation} </umb-code-block> `,
81+
() => html` <umb-code-block id="codeblock">${this._systemInformation}</umb-code-block> `,
8282
)}
8383
8484
<uui-button

0 commit comments

Comments
 (0)