Skip to content

Commit 912d6b3

Browse files
Lint fixes
1 parent 8bec776 commit 912d6b3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

auth-web/src/components/auth/account-settings/transaction/TransactionsDataTable.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,8 @@ export default defineComponent({
272272
})
273273
274274
async function downloadReceipt (item: Transaction) {
275-
const receipt = await PaymentService.postReceipt(item.id);
276-
console.log(item);
275+
const receipt = await PaymentService.postReceipt(item.id)
276+
console.log(item)
277277
const filename = `bcregistry-receipts-${item.id}.pdf`
278278
CommonUtils.fileDownload(receipt.data, filename, 'application/pdf')
279279
}

auth-web/src/resources/table-headers/transactions-table/headers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,5 +230,5 @@ export const TransactionTableHeaders: BaseTableHeaderI[] = [
230230
itemClass: 'line-item',
231231
width: '164px',
232232
value: 'Downloads'
233-
},
233+
}
234234
]

0 commit comments

Comments
 (0)