Issue
Error: src/app/app.component.ts:43:19 - error TS2339: Property 'set' does not exist on type 'Config'. [ERROR] [ERROR] 43 this.config.set('backButtonText', this.translateService.instant('button.back'));
and this is the code
this.config.set('backButtonText', this.translateService.instant('button.back'));
I updated ionic 5 to 6, Angular version is 13
Solution
I decleared a variable in app component and using service this.dataService.updateBackButtonText('button.back';
, subscribed each child component.
Answered By - Ehsan
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.