Fix metrics search when a value is null.

This commit is contained in:
Maxime-J 2024-02-15 14:25:33 +00:00
parent f50067e44f
commit d1cbbf37c0
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ export function MetricsTable({
items = items.filter(({ x, ...data }) => {
const value = formatValue(x, type, data);
return value.toLowerCase().includes(search.toLowerCase());
return value?.toLowerCase().includes(search.toLowerCase());
});
}