Add transaction component to transaction page to show transaction details
This commit is contained in:
parent
b656fb55d5
commit
263933efcd
@ -45,5 +45,5 @@
|
|||||||
</ion-row>
|
</ion-row>
|
||||||
</ion-grid>
|
</ion-grid>
|
||||||
|
|
||||||
<transactions [queryType]="'tx'" [queryValue]="txId"></transactions>
|
<transaction [tx]="tx"></transaction>
|
||||||
</ion-content>
|
</ion-content>
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { IonicPageModule } from 'ionic-angular';
|
import { IonicPageModule } from 'ionic-angular';
|
||||||
import { TransactionPage } from './transaction';
|
import { TransactionPage } from './transaction';
|
||||||
import { TransactionsComponentModule } from '../../components/transactions/transactions.module';
|
import { TransactionComponentModule } from '../../components/transaction/transaction.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [
|
declarations: [
|
||||||
@ -9,7 +9,7 @@ import { TransactionsComponentModule } from '../../components/transactions/trans
|
|||||||
],
|
],
|
||||||
imports: [
|
imports: [
|
||||||
IonicPageModule.forChild(TransactionPage),
|
IonicPageModule.forChild(TransactionPage),
|
||||||
TransactionsComponentModule
|
TransactionComponentModule
|
||||||
],
|
],
|
||||||
exports: [
|
exports: [
|
||||||
TransactionPage
|
TransactionPage
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user