diff --git a/lib/Controller/PublicStartController.php b/lib/Controller/PublicStartController.php index 70488acb8..e85da7bb7 100644 --- a/lib/Controller/PublicStartController.php +++ b/lib/Controller/PublicStartController.php @@ -80,10 +80,12 @@ public function publicIndex(string $token, string $path): PublicTemplateResponse return new PublicTemplateResponse('collectives', 'error', ['appsMissing' => $appsMissing]); // templates/error.php } $this->eventDispatcher->dispatch(LoadViewer::class, new LoadViewer()); - return new PublicTemplateResponse('collectives', 'main', [ // templates/main.php + $response = new PublicTemplateResponse('collectives', 'main', [ // templates/main.php 'id-app-content' => '#app-content-vue', 'id-app-navigation' => '#app-navigation-vue', ]); + $response->setFooterVisible(false); + return $response; } /** diff --git a/src/components/Collective/CollectiveActions.vue b/src/components/Collective/CollectiveActions.vue index 6757db791..401d81ea1 100644 --- a/src/components/Collective/CollectiveActions.vue +++ b/src/components/Collective/CollectiveActions.vue @@ -64,7 +64,8 @@ {{ t('collectives', 'Settings') }} - {{ t('collectives', 'Leave collective') }}