Skip to content

Commit

Permalink
fix(UI): Fix "Skip to main content" keyboard shortcut
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen authored and backportbot-nextcloud[bot] committed Aug 10, 2023
1 parent d06b8eb commit 2550782
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Controller/PageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public function index(string $token = '', string $callUser = '', string $passwor

$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',
]);

Expand Down Expand Up @@ -328,7 +328,7 @@ public function recording(string $token): Response {
$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,
]);

Expand Down Expand Up @@ -403,7 +403,7 @@ protected function guestEnterRoom(string $token, string $password): Response {
$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,
]);

Expand Down

0 comments on commit 2550782

Please sign in to comment.