Handle null values

This commit is contained in:
Anton Tananaev 2024-11-02 06:41:16 -07:00
parent 274ee5256b
commit 92f64570a1

View File

@ -93,7 +93,7 @@ const PositionValue = ({ position, property, attribute }) => {
}
};
if (value === undefined) {
if (value === undefined || value === null) {
return '';
}