mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
Null check.
This commit is contained in:
parent
a933f5b4a0
commit
538fb49219
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ export function OSTable(props: MetricsTableProps) {
|
|||
<FilterLink id="os" value={os} label={formatOS(os)}>
|
||||
<img
|
||||
src={`${process.env.basePath || ''}/images/os/${
|
||||
os?.toLowerCase().replaceAll(/\W/g, '-') || 'unknown'
|
||||
os?.toLowerCase()?.replaceAll(/\W/g, '-') || 'unknown'
|
||||
}.png`}
|
||||
alt={os}
|
||||
width={16}
|
||||
|
|
|
|||
Loading…
Reference in a new issue