fix: admin/logs: file was displayed encoded
Massimo Melina committed
Aug 2, 2023 at 16:29 UTC
ce3ffc1d1246a1b3b4957fd147fa0466a034ab2e
1 file changed
+1
admin/src/LogsPage.ts
+1
@@ -102,6 +102,7 @@ function LogFile({ file }: { file: string }) {
102
minWidth: 100,
103
mergeRender: { other: 'method', fontSize: 'small' },
104
valueFormatter: ({ value }) => {
105
+ value = decodeURIComponent(value)
106
if (!value.startsWith(API_URL))
107
return value
108
const ofs = API_URL.length