master
ShahanaFarooqui 5 months ago
parent 475b47b7ea
commit 43a46b65e1

@ -29,7 +29,7 @@
"@angular-eslint/sort-ngmodule-metadata-arrays": "off", "@angular-eslint/sort-ngmodule-metadata-arrays": "off",
"@angular-eslint/use-component-view-encapsulation": "off", "@angular-eslint/use-component-view-encapsulation": "off",
"@angular-eslint/use-injectable-provided-in": "off", "@angular-eslint/use-injectable-provided-in": "off",
"@typescript-eslint/member-delimiter-style": "off", "@typescript-eslint/member-delimiter-style": "off",
"@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/type-annotation-spacing": 0, "@typescript-eslint/type-annotation-spacing": 0,
"quotes": ["error", "single"], "quotes": ["error", "single"],
@ -181,7 +181,7 @@
"files": [ "files": [
"*.html" "*.html"
], ],
"parser": "@angular-eslint/template-parser", "parser": "@angular-eslint/template-parser",
"extends": [ "extends": [
"plugin:@angular-eslint/template/all", "plugin:@angular-eslint/template/all",
"plugin:@angular-eslint/template/recommended", "plugin:@angular-eslint/template/recommended",
@ -205,6 +205,7 @@
"@angular-eslint/template/no-interpolation-in-attributes": "off", "@angular-eslint/template/no-interpolation-in-attributes": "off",
"@angular-eslint/template/no-positive-tabindex": "off", "@angular-eslint/template/no-positive-tabindex": "off",
"@angular-eslint/template/prefer-ngsrc": "off", "@angular-eslint/template/prefer-ngsrc": "off",
"@angular-eslint/template/prefer-control-flow": "off",
"@angular-eslint/template/use-track-by-function": "off" "@angular-eslint/template/use-track-by-function": "off"
} }
} }

@ -115,12 +115,13 @@
"lint": { "lint": {
"builder": "@angular-eslint/builder:lint", "builder": "@angular-eslint/builder:lint",
"options": { "options": {
"eslintConfig": ".eslintrc.json",
"lintFilePatterns": [ "lintFilePatterns": [
"src/**/*.ts", "src/**/*.ts",
"src/**/*.html" "src/**/*.html"
] ]
} }
} }
} }
} }
}, },

@ -50,7 +50,7 @@ if (isDevMode()) { isDevEnvironemt = true; }
} }
}), }),
EffectsModule.forRoot([RTLEffects, LNDEffects, CLNEffects, ECLEffects]), EffectsModule.forRoot([RTLEffects, LNDEffects, CLNEffects, ECLEffects]),
isDevEnvironemt ? StoreDevtoolsModule.instrument({connectInZone: true}) : [] isDevEnvironemt ? StoreDevtoolsModule.instrument({ connectInZone: true }) : []
], ],
declarations: [AppComponent], declarations: [AppComponent],
providers: [ providers: [

@ -89,7 +89,7 @@ export class CLNLocalFailedTransactionsComponent implements OnInit, AfterViewIni
} }
this.totalLocalFailedTransactions = lffhSeletor.localFailedForwardingHistory.totalForwards || 0; this.totalLocalFailedTransactions = lffhSeletor.localFailedForwardingHistory.totalForwards || 0;
this.failedLocalEvents = lffhSeletor.localFailedForwardingHistory.listForwards || []; this.failedLocalEvents = lffhSeletor.localFailedForwardingHistory.listForwards || [];
if (this.failedLocalEvents&& this.sort && this.paginator && this.displayedColumns.length > 0) { if (this.failedLocalEvents && this.sort && this.paginator && this.displayedColumns.length > 0) {
this.loadLocalfailedLocalEventsTable(this.failedLocalEvents); this.loadLocalfailedLocalEventsTable(this.failedLocalEvents);
} }
this.logger.info(lffhSeletor); this.logger.info(lffhSeletor);

Loading…
Cancel
Save