hide owner and tenants if empty on check and pdf
This commit is contained in:
@@ -473,7 +473,10 @@ export const AppealRow_pdf = (props) => {
|
||||
.value
|
||||
].map(
|
||||
(tenant, index) => {
|
||||
return (
|
||||
return typeof tenant.pinswg_owners !=
|
||||
"undefined" ||
|
||||
typeof tenant.pinswg_agriculturaltenantname !=
|
||||
"undefined" ? (
|
||||
<View
|
||||
key={
|
||||
index
|
||||
@@ -507,6 +510,8 @@ export const AppealRow_pdf = (props) => {
|
||||
)}
|
||||
</Text>
|
||||
</View>
|
||||
) : (
|
||||
""
|
||||
);
|
||||
}
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user