disabled html on changelog of plugin updates
Massimo Melina committed
Jul 11, 2026 at 00:06 UTC
a591ca7b4253952dcaab8743b483d0a760216848
2 files changed
+2
-2
admin/src/CustomHtmlPage.ts
+1
-1
@@ -48,7 +48,7 @@ export default function CustomHtmlPage({ setTitleSide }: PageProps) {
48
md("Add HTML code to some parts of the Front-end. It's saved to file `custom.html`, that you can edit directly with your editor of choice. "),
49
wikiLink('customization', "More help")
50
),
51
- h(Alert, { severity: 'info' }, md("To customize icons "), wikiLink('customization#icons', "read documentation") ),
51
+ h(Alert, { severity: 'info' }, "To customize icons ", wikiLink('customization#icons', "read documentation") ),
52
), []))
53
return h(Fragment, {},
54
h(Box, { sx: { display: 'flex', alignItems: 'center', gap: 1, mb: 1 } },
admin/src/InstalledPlugins.ts
+1
-1
@@ -90,7 +90,7 @@ export default function InstalledPlugins({ updates }: { updates?: true }) {
90
_.uniq(_.sortBy(value, 'version').filter(x => _.isString(x.message) && x.message && x.version > row.installedVersion))
91
.map((x, i) => h(TableRow, { key: i },
92
h(TableCell, { sx: { whiteSpace: 'pre', verticalAlign: 'top' } }, `• ${x.version}: `),
93
- h(TableCell, {}, md(x.message))
93
+ h(TableCell, {}, md(x.message, { html: false }))
94
))
95
)
96
)