lint corrections
This commit is contained in:
parent
57ec79a46a
commit
e624721fe3
@ -6,11 +6,11 @@ import {
|
|||||||
BlocksPage,
|
BlocksPage,
|
||||||
BroadcastTxPage,
|
BroadcastTxPage,
|
||||||
NodeStatusPage,
|
NodeStatusPage,
|
||||||
VerifyMessagePage,
|
VerifyMessagePage
|
||||||
} from '../pages';
|
} from '../pages';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
templateUrl: './app.html',
|
templateUrl: './app.html'
|
||||||
})
|
})
|
||||||
export class InsightApp {
|
export class InsightApp {
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ export class InsightApp {
|
|||||||
{ title: 'Blocks', component: BlocksPage },
|
{ title: 'Blocks', component: BlocksPage },
|
||||||
{ title: 'Broadcast Transaction', component: BroadcastTxPage },
|
{ title: 'Broadcast Transaction', component: BroadcastTxPage },
|
||||||
{ title: 'Verify Message', component: VerifyMessagePage },
|
{ title: 'Verify Message', component: VerifyMessagePage },
|
||||||
{ title: 'Node Status', component: NodeStatusPage },
|
{ title: 'Node Status', component: NodeStatusPage }
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -32,7 +32,7 @@ import { BlocksService, StorageService } from '../services';
|
|||||||
StorageService,
|
StorageService,
|
||||||
BlocksService,
|
BlocksService,
|
||||||
{provide: ErrorHandler, useClass: IonicErrorHandler}
|
{provide: ErrorHandler, useClass: IonicErrorHandler}
|
||||||
],
|
]
|
||||||
})
|
})
|
||||||
|
|
||||||
export class AppModule {}
|
export class AppModule {}
|
||||||
|
|||||||
@ -8,12 +8,12 @@ import { IonicModule } from 'ionic-angular';
|
|||||||
imports: [
|
imports: [
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
ReactiveFormsModule,
|
ReactiveFormsModule
|
||||||
],
|
],
|
||||||
exports: [
|
exports: [
|
||||||
],
|
],
|
||||||
entryComponents: [],
|
entryComponents: [],
|
||||||
providers: [ ],
|
providers: []
|
||||||
})
|
})
|
||||||
|
|
||||||
export class ComponentsModule {}
|
export class ComponentsModule {}
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import { Component } from '@angular/core';
|
|||||||
import { NavController } from 'ionic-angular';
|
import { NavController } from 'ionic-angular';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
templateUrl: './broadcastTxPage.html',
|
templateUrl: './broadcastTxPage.html'
|
||||||
})
|
})
|
||||||
|
|
||||||
export class BroadcastTxPage {
|
export class BroadcastTxPage {
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import { Component } from '@angular/core';
|
|||||||
import { NavController } from 'ionic-angular';
|
import { NavController } from 'ionic-angular';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
templateUrl: './nodeStatusPage.html',
|
templateUrl: './nodeStatusPage.html'
|
||||||
})
|
})
|
||||||
|
|
||||||
export class NodeStatusPage {
|
export class NodeStatusPage {
|
||||||
|
|||||||
@ -5,7 +5,7 @@ import {
|
|||||||
BlocksPage,
|
BlocksPage,
|
||||||
BroadcastTxPage,
|
BroadcastTxPage,
|
||||||
NodeStatusPage,
|
NodeStatusPage,
|
||||||
VerifyMessagePage,
|
VerifyMessagePage
|
||||||
} from './index';
|
} from './index';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
@ -13,14 +13,14 @@ import {
|
|||||||
BlocksPage,
|
BlocksPage,
|
||||||
BroadcastTxPage,
|
BroadcastTxPage,
|
||||||
NodeStatusPage,
|
NodeStatusPage,
|
||||||
VerifyMessagePage,
|
VerifyMessagePage
|
||||||
],
|
],
|
||||||
imports: [ IonicModule, ComponentsModule ],
|
imports: [ IonicModule, ComponentsModule ],
|
||||||
exports: [
|
exports: [
|
||||||
// CustomComponent,
|
// CustomComponent,
|
||||||
],
|
],
|
||||||
entryComponents: [],
|
entryComponents: [],
|
||||||
providers: [ ],
|
providers: []
|
||||||
})
|
})
|
||||||
|
|
||||||
export class PagesModule {}
|
export class PagesModule {}
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import { Component } from '@angular/core';
|
|||||||
import { NavController } from 'ionic-angular';
|
import { NavController } from 'ionic-angular';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
templateUrl: './verifyMessagePage.html',
|
templateUrl: './verifyMessagePage.html'
|
||||||
})
|
})
|
||||||
|
|
||||||
export class VerifyMessagePage {
|
export class VerifyMessagePage {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user