Browse Source

Add space (#1381)

pull/1388/head
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
074b09b543
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      apps/client/src/app/pages/portfolio/transactions/transactions-page.component.ts

12
apps/client/src/app/pages/portfolio/transactions/transactions-page.component.ts

@ -188,7 +188,7 @@ export class TransactionsPageComponent implements OnDestroy, OnInit {
input.type = 'file'; input.type = 'file';
input.onchange = (event) => { input.onchange = (event) => {
this.snackBar.open('⏳' + $localize`Importing data...`); this.snackBar.open('⏳ ' + $localize`Importing data...`);
// Getting the file reference // Getting the file reference
const file = (event.target as HTMLInputElement).files[0]; const file = (event.target as HTMLInputElement).files[0];
@ -334,9 +334,13 @@ export class TransactionsPageComponent implements OnDestroy, OnInit {
private handleImportSuccess() { private handleImportSuccess() {
this.fetchActivities(); this.fetchActivities();
this.snackBar.open('✅' + $localize`Import has been completed`, undefined, { this.snackBar.open(
duration: 3000 '✅ ' + $localize`Import has been completed`,
}); undefined,
{
duration: 3000
}
);
} }
private openCreateTransactionDialog(aActivity?: Activity): void { private openCreateTransactionDialog(aActivity?: Activity): void {

Loading…
Cancel
Save