This commit is contained in:
2024-10-01 19:55:10 +05:00
parent 61798c8b65
commit 432c80832a
2 changed files with 12 additions and 2 deletions

View File

@@ -29,7 +29,13 @@ async function fetchCardHistory() {
<p>
<ul>
${Array.from(result.transactions).map(transaction => {
return 'hello';
return `<li>
<p>: <strong>${transaction['trandate']}</strong></p>
<p>: <strong>${transaction['currency']}</strong></p>
<p>: <strong>${transaction['opersum']}</strong></p>
<p>: <strong>${transaction['actionName']}</strong></p>
<p>: <strong>${transaction['opername']}</strong></p>
</li>`;
})}
</ul>
</p>