mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2024-12-22 19:49:27 +00:00
Fix lint
This commit is contained in:
parent
b57dfd1639
commit
1dd60366d8
1 changed files with 2 additions and 2 deletions
|
@ -211,7 +211,7 @@ export class TransactionsComponent extends BasePageComponent implements AfterVie
|
||||||
this.flushError = '';
|
this.flushError = '';
|
||||||
this.flushSuccess = true;
|
this.flushSuccess = true;
|
||||||
}
|
}
|
||||||
catch(error) {
|
catch(error: any) {
|
||||||
this.flushSuccess = false;
|
this.flushSuccess = false;
|
||||||
this.flushError = `${error}`;
|
this.flushError = `${error}`;
|
||||||
}
|
}
|
||||||
|
@ -233,7 +233,7 @@ export class TransactionsComponent extends BasePageComponent implements AfterVie
|
||||||
this.flushCacheError = '';
|
this.flushCacheError = '';
|
||||||
this.flushCacheSuccess = true;
|
this.flushCacheSuccess = true;
|
||||||
}
|
}
|
||||||
catch(error) {
|
catch(error: any) {
|
||||||
this.flushCacheSuccess = false;
|
this.flushCacheSuccess = false;
|
||||||
this.flushCacheError = `${error}`;
|
this.flushCacheError = `${error}`;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue