Skip to content

Commit 9488eaa

Browse files
committed
Don't escape tag content in logs
1 parent 5844ca7 commit 9488eaa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • backend/src/plugin/logging/config

backend/src/plugin/logging/config/tags.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { m } from "mousetache";
66

77
export const TagView = m.object({
88
name: m.terminal(),
9-
content: m.terminal(),
9+
content: m.terminal({ noEscape: true }),
1010
});
1111

1212
export const TagCreateEvent = eventConfig(

0 commit comments

Comments
 (0)