This commit is contained in:
everoddandeven 2024-10-19 19:38:15 +02:00
parent b57dfd1639
commit 1dd60366d8

View file

@ -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}`;
} }