mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01: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…
Add table
Add a link
Reference in a new issue