staging #468

Merged
edraft merged 19 commits from staging into master 2024-01-26 16:33:31 +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();
});
}