updated pdf for tenants array
This commit is contained in:
@@ -464,12 +464,19 @@ export const AppealRow_pdf = (props) => {
|
|||||||
marginBottom: 10,
|
marginBottom: 10,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{props.props[
|
{props.props.hasOwnProperty(
|
||||||
datafieldname[0].value
|
datafieldname[0].value
|
||||||
].map((tenant, index) => {
|
) &&
|
||||||
|
props.props[
|
||||||
|
datafieldname[0]
|
||||||
|
.value
|
||||||
|
].map(
|
||||||
|
(tenant, index) => {
|
||||||
return (
|
return (
|
||||||
<View
|
<View
|
||||||
key={index}
|
key={
|
||||||
|
index
|
||||||
|
}
|
||||||
style={{
|
style={{
|
||||||
flexDirection:
|
flexDirection:
|
||||||
"row",
|
"row",
|
||||||
@@ -501,7 +508,8 @@ export const AppealRow_pdf = (props) => {
|
|||||||
</Text>
|
</Text>
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
})}
|
}
|
||||||
|
)}
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
|||||||
Reference in New Issue
Block a user