1.0.0 #253
| @@ -11,15 +11,15 @@ export class HistoryBtnComponent implements OnInit { | ||||
|   @Input() history: History[] = []; | ||||
|   @Input() translationKey: string = ""; | ||||
|  | ||||
|   showSidebar = false; | ||||
|   public showSidebar: boolean = false; | ||||
|  | ||||
|   constructor() { | ||||
|   public constructor() { | ||||
|   } | ||||
|  | ||||
|   ngOnInit(): void { | ||||
|   public ngOnInit(): void { | ||||
|   } | ||||
|  | ||||
|   openHistory(): void { | ||||
|   public openHistory(): void { | ||||
|     this.showSidebar = true; | ||||
|     let oldHistory: Partial<History> = {}; | ||||
|     for (const history of this.history) { | ||||
| @@ -36,7 +36,7 @@ export class HistoryBtnComponent implements OnInit { | ||||
|     } | ||||
|   } | ||||
|  | ||||
|   getAttributeTranslationKey(key: string) { | ||||
|   public getAttributeTranslationKey(key: string): string { | ||||
|     return `common.history.${key}`; | ||||
|   } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user