Skip to content

Commit

Permalink
Fix rendering escape seqs
Browse files Browse the repository at this point in the history
  • Loading branch information
pijng committed Mar 5, 2024
1 parent 660abd4 commit d06609c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/api/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ info:
license:
name: Apache 2.0
url: http://www.apache.org/licenses/LICENSE-2.0.html
version: 1.3.23
version: 1.3.24
externalDocs:
description: Find out more about spec
url: ''
Expand Down
2 changes: 1 addition & 1 deletion web/src/shared/ui/logs-table/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const LogsTable = ({
});
h("pre", {
classList: ["whitespace-pre-wrap"],
text: remap(log, "text"),
text: remap(log, "text").map((t) => t.replaceAll("\\n", "\n")),
});

const $netFieldsPresent = log.map((l) => isObjectPresent(l.request) || isObjectPresent(l.response));
Expand Down

0 comments on commit d06609c

Please sign in to comment.