mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 23:57:12 +01:00
Updated reports components.
This commit is contained in:
parent
f5bc3dc6c2
commit
0f6cdf8b80
95 changed files with 580 additions and 698 deletions
|
|
@ -22,7 +22,7 @@ export function safeDecodeURI(s: string | undefined | null): string | undefined
|
|||
|
||||
try {
|
||||
return decodeURI(s);
|
||||
} catch (e) {
|
||||
} catch {
|
||||
return s;
|
||||
}
|
||||
}
|
||||
|
|
@ -34,7 +34,7 @@ export function safeDecodeURIComponent(s: string | undefined | null): string | u
|
|||
|
||||
try {
|
||||
return decodeURIComponent(s);
|
||||
} catch (e) {
|
||||
} catch {
|
||||
return s;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue