Merge pull request #45 from nextcloud-gmbh/bugfix/setup-template

Fix loading the proper template
pull/50/head
Julius Härtl 2018-11-21 15:20:08 +01:00 zatwierdzone przez GitHub
commit ef225a1dcd
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -137,7 +137,7 @@ class NavigationController extends Controller {
$this->configService->setCloudAddress($cloudAddress);
} else {
$data['serverData']['cliUrl'] = $this->config->getSystemValue('overwrite.cli.url', \OC::$server->getURLGenerator()->getBaseUrl());
return new TemplateResponse(Application::APP_NAME, 'setup', $data);
return new TemplateResponse(Application::APP_NAME, 'main', $data);
}
}
}

Wyświetl plik

@ -255,7 +255,7 @@ export default {
$state.complete()
return
}
response.results.length > 0 ? $state.loaded() : $state.complete()
response.result.length > 0 ? $state.loaded() : $state.complete()
}).catch((error) => {
OC.Notification.showTemporary('Failed to load more timeline entries')
console.error('Failed to load more timeline entries', error)