diff --git a/backend/src/interfaces.ts b/backend/src/interfaces.ts index d525f18c6..9ca54dbb0 100644 --- a/backend/src/interfaces.ts +++ b/backend/src/interfaces.ts @@ -59,6 +59,7 @@ export interface Prevout { scriptpubkey_type: string; scriptpubkey_address: string; value: number; + asset?: string; } export interface Vin { diff --git a/frontend/src/app/assets/assets.component.ts b/frontend/src/app/assets/assets.component.ts index d63d13377..14c3146f5 100644 --- a/frontend/src/app/assets/assets.component.ts +++ b/frontend/src/app/assets/assets.component.ts @@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core'; import { AssetsService } from '../services/assets.service'; import { environment } from 'src/environments/environment'; import { FormGroup, FormBuilder, Validators } from '@angular/forms'; -import { filter, distinctUntilChanged } from 'rxjs/operators'; +import { distinctUntilChanged } from 'rxjs/operators'; @Component({ selector: 'app-assets', @@ -32,13 +32,11 @@ export class AssetsComponent implements OnInit { ngOnInit() { this.itemsPerPage = Math.max(Math.round(this.contentSpace / this.fiveItemsPxSize) * 5, 10); - setTimeout(() => this.getAssets()); - this.searchForm = this.formBuilder.group({ - searchText: ['', Validators.required], + searchText: [{ value: '', disabled: true }, Validators.required] }); - this.searchForm.controls.searchText.valueChanges + this.searchForm.get('searchText').valueChanges .pipe( distinctUntilChanged(), ) @@ -54,6 +52,8 @@ export class AssetsComponent implements OnInit { this.filteredAssets = this.assets.slice(0, this.itemsPerPage); } }); + + this.getAssets(); } getAssets() { @@ -67,6 +67,7 @@ export class AssetsComponent implements OnInit { }); this.assets = this.assets.sort((a: any, b: any) => a.name.localeCompare(b.name)); this.assetsCache = this.assets; + this.searchForm.controls['searchText'].enable(); this.filteredAssets = this.assets.slice(0, this.itemsPerPage); this.isLoading = false; }, diff --git a/frontend/src/app/components/transactions-list/transactions-list.component.html b/frontend/src/app/components/transactions-list/transactions-list.component.html index 115de55c9..6c3a0d579 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.html +++ b/frontend/src/app/components/transactions-list/transactions-list.component.html @@ -51,7 +51,14 @@