1.0.0.rc2 #250

Merged
edraft merged 9 commits from 1.0.0.rc2 into 1.0.0 2023-03-20 13:40:00 +01:00
Showing only changes of commit 699377be54 - Show all commits

View File

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