1.0.0 #253

Merged
edraft merged 262 commits from 1.0.0 into master 2023-03-27 09:30:50 +02:00
Showing only changes of commit efba1a4ce8 - 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}`;
}