mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
Fix metrics search when a value is null.
This commit is contained in:
parent
f50067e44f
commit
d1cbbf37c0
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ export function MetricsTable({
|
||||||
items = items.filter(({ x, ...data }) => {
|
items = items.filter(({ x, ...data }) => {
|
||||||
const value = formatValue(x, type, data);
|
const value = formatValue(x, type, data);
|
||||||
|
|
||||||
return value.toLowerCase().includes(search.toLowerCase());
|
return value?.toLowerCase().includes(search.toLowerCase());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue