mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(files): Adjust ID for skip content buttons
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
0dcea036a7
commit
59c982f31f
2 changed files with 5 additions and 1 deletions
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -186,6 +186,8 @@ class ViewControllerTest extends TestCase {
|
|||
'index',
|
||||
[
|
||||
'fileNotFound' => 0,
|
||||
'id-app-content' => '#app-content-vue',
|
||||
'id-app-navigation' => '#app-navigation-vue',
|
||||
]
|
||||
);
|
||||
$policy = new Http\ContentSecurityPolicy();
|
||||
|
|
|
|||
Loading…
Reference in a new issue