diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-12-21 11:34:02 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-12-21 14:56:40 +0100 |
commit | 59c982f31fc123bf4039b326ecc1ec999e52474b (patch) | |
tree | f7e84e361e9dfa9f2d9546c51d1020d14522504b /apps/files/lib/Controller | |
parent | 0dcea036a7d8ce7b078d051c1752971ddef0473f (diff) | |
download | nextcloud-server-59c982f31fc123bf4039b326ecc1ec999e52474b.tar.gz nextcloud-server-59c982f31fc123bf4039b326ecc1ec999e52474b.zip |
fix(files): Adjust ID for skip content buttons
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/files/lib/Controller')
-rw-r--r-- | apps/files/lib/Controller/ViewController.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files/lib/Controller/ViewController.php b/apps/files/lib/Controller/ViewController.php index ca9ac80b9e2..be5069b7f61 100644 --- a/apps/files/lib/Controller/ViewController.php +++ b/apps/files/lib/Controller/ViewController.php @@ -280,7 +280,9 @@ class ViewController extends Controller { $this->initialState->provideInitialState('templates', $this->templateManager->listCreators()); $params = [ - 'fileNotFound' => $fileNotFound ? 1 : 0 + 'fileNotFound' => $fileNotFound ? 1 : 0, + 'id-app-content' => '#app-content-vue', + 'id-app-navigation' => '#app-navigation-vue', ]; $response = new TemplateResponse( |