Merge pull request #42419 from nextcloud/fix/skip-buttons-files

fix(files): Adjust ID for skip content buttons
pull/42427/head
Ferdinand Thiessen 5 months ago committed by GitHub
commit b919eb44f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save