summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-08-10 14:06:19 +0200
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2023-08-10 19:09:53 +0000
commit255078243c18f53ab903666126586531fe1d2d2f (patch)
tree49618477886f9f280d7fe3912dade33732ff09c0
parentd06b8eb85297ee0bff385211d22d7179b0e6b6c6 (diff)
fix(UI): Fix "Skip to main content" keyboard shortcut
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--lib/Controller/PageController.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php
index caad0ae60..5c2fb7539 100644
--- a/lib/Controller/PageController.php
+++ b/lib/Controller/PageController.php
@@ -277,7 +277,7 @@ class PageController extends Controller {
$response = new TemplateResponse($this->appName, 'index', [
'app' => Application::APP_ID,
- 'id-app-content' => '#app-content-vue',
+ 'id-app-content' => '#content-vue',
'id-app-navigation' => '#app-navigation-vue',
]);
@@ -328,7 +328,7 @@ class PageController extends Controller {
$this->eventDispatcher->dispatchTyped(new RenderReferenceEvent());
$response = new PublicTemplateResponse($this->appName, 'recording', [
- 'id-app-content' => '#app-content-vue',
+ 'id-app-content' => '#content-vue',
'id-app-navigation' => null,
]);
@@ -403,7 +403,7 @@ class PageController extends Controller {
$this->eventDispatcher->dispatchTyped(new RenderReferenceEvent());
$response = new PublicTemplateResponse($this->appName, 'index', [
- 'id-app-content' => '#app-content-vue',
+ 'id-app-content' => '#content-vue',
'id-app-navigation' => null,
]);