mirror of
https://github.com/traccar/traccar-web.git
synced 2025-01-07 03:26:42 +08:00
Handle null values
This commit is contained in:
parent
274ee5256b
commit
92f64570a1
@ -93,7 +93,7 @@ const PositionValue = ({ position, property, attribute }) => {
|
||||
}
|
||||
};
|
||||
|
||||
if (value === undefined) {
|
||||
if (value === undefined || value === null) {
|
||||
return '';
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user