Merge branch 'release/v1.29.1'

This commit is contained in:
AmirHossein Mahmoodi
2024-01-15 16:41:21 +03:30
2 changed files with 7 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
NEXT_PUBLIC_API_NAME = "Loan Facilities Dashboard"
NEXT_PUBLIC_API_VERSION = "1.29.0"
NEXT_PUBLIC_API_VERSION = "1.29.1"
NEXT_PUBLIC_DEFAULT_LANGUAGE = "fa"
NEXT_PUBLIC_DEFAULT_DIRECTION = "rtl"

View File

@@ -74,8 +74,10 @@ const TableContent = ({rowId}) => {
<TableCell>{historyDetails.state_name}</TableCell>
<TableCell>{historyDetails.latest_histories[0].expert_description}</TableCell>
<TableCell>
{historyDetails.latest_histories[0].attachments.map(attachment => <PrintHistory
attachment={attachment}/>)}
{historyDetails.latest_histories[0].attachments.map((attachment, index) =>
<PrintHistory
key={index}
attachment={attachment}/>)}
</TableCell>
</TableRow>
{historyDetails.latest_histories.map((latest_history, index) => {
@@ -96,7 +98,8 @@ const TableContent = ({rowId}) => {
<TableCell>{latest_history.previous_state_name}</TableCell>
<TableCell>{_expert_description}</TableCell>
<TableCell>
{_attachments.map(attachment => <PrintHistory attachment={attachment}/>)}
{_attachments.map((attachment, index) => <PrintHistory key={index}
attachment={attachment}/>)}
</TableCell>
</TableRow>)
})}