Fixed bug on vegetable Properties
This commit is contained in:
parent
d817fe3ca2
commit
cbf28c16f2
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ export default class RouterVegetable extends React.Component {
|
|||
}
|
||||
|
||||
renderProperty(item, key) {
|
||||
if (item.Property === null || item.Property === undefined) {
|
||||
if (item.Property === null || item.Property === undefined || !item.value) {
|
||||
return (null)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue