63945: Abstract item-update component

This commit is contained in:
Kristof De Langhe
2019-07-25 13:39:28 +02:00
parent cdb2c30bd4
commit 4f3ec612a1
3 changed files with 149 additions and 135 deletions

View File

@@ -63,7 +63,7 @@ export class AbstractTrackableComponent {
* Get translated notification title
* @param key
*/
private getNotificationTitle(key: string) {
getNotificationTitle(key: string) {
return this.translateService.instant(this.notificationsPrefix + key + '.title');
}
@@ -71,7 +71,7 @@ export class AbstractTrackableComponent {
* Get translated notification content
* @param key
*/
private getNotificationContent(key: string) {
getNotificationContent(key: string) {
return this.translateService.instant(this.notificationsPrefix + key + '.content');
}