mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-25 20:02:46 +01:00
Merge pull request #2513 from Maxime-J/metrics-search
Fix metrics search when a value is null.
This commit is contained in:
commit
1e6e468644
@ -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 New Issue
Block a user