From 92f64570a16298019c95131257af29a88d07f6bf Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 2 Nov 2024 06:41:16 -0700 Subject: [PATCH] Handle null values --- src/common/components/PositionValue.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/components/PositionValue.jsx b/src/common/components/PositionValue.jsx index a6d81714..5564037c 100644 --- a/src/common/components/PositionValue.jsx +++ b/src/common/components/PositionValue.jsx @@ -93,7 +93,7 @@ const PositionValue = ({ position, property, attribute }) => { } }; - if (value === undefined) { + if (value === undefined || value === null) { return ''; }