Fix rename the methods

This commit is contained in:
Sébastien ANDRE
2023-06-29 16:05:00 +02:00
parent cc56f3def0
commit 54dc6ae57e
2 changed files with 4 additions and 4 deletions

View File

@@ -64,6 +64,6 @@ export class AppComponent implements OnInit {
this.authenticationService.currentUserValue = this.currentUser; this.authenticationService.currentUserValue = this.currentUser;
this.selectedLanguageFlag = event.value; this.selectedLanguageFlag = event.value;
this.serviceComm.ForceTranslateTitle(); this.serviceComm.forceTranslate();
} }
} }

View File

@@ -15,15 +15,15 @@ export class ServiceComm {
constructor() { } constructor() { }
public UpdatedComponentTitle(title: string) { public updatedComponentTitle(title: string) {
this.componentTitleSource.next(title); this.componentTitleSource.next(title);
} }
public RefreshData(refreshAfter: AddAction) { public refreshData(refreshAfter: AddAction) {
this.refreshRequestSource.next(refreshAfter); this.refreshRequestSource.next(refreshAfter);
} }
public ForceTranslateTitle() { public forceTranslate() {
this.forceTranslateTitleSource.next(true); this.forceTranslateTitleSource.next(true);
} }
} }