staging_1.2.6 #467

Merged
edraft merged 16 commits from staging_1.2.6 into staging 2024-01-26 12:18:06 +01:00
Showing only changes of commit acfa359eeb - Show all commits

View File

@ -93,11 +93,11 @@ export class ScheduledEventsComponent extends ComponentWithTable implements OnIn
public ngOnInit(): void {
this.loading = true;
this.setFilterForm();
this.data.getServerFromRoute(this.route).then(async server => {
this.server = server;
let authUser = await this.authService.getLoggedInUser();
this.user = authUser?.users?.find(u => u.server == this.server.id) ?? null;
this.setFilterForm();
});
}