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