diff options
author | Simon L <szaimen@e.mail.de> | 2022-03-01 10:42:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 10:42:18 +0100 |
commit | 774fac10dce6afe36912abc190ffb42a95937f8c (patch) | |
tree | 09d17255263cf00711c05ed6a647b9bc85c542a4 /apps/settings/src | |
parent | 46e6c49b181d5f1fa48d314e9e2e180793563f9b (diff) | |
parent | ec2462d5d2682e08a324a140be04d741adb96814 (diff) | |
download | nextcloud-server-774fac10dce6afe36912abc190ffb42a95937f8c.tar.gz nextcloud-server-774fac10dce6afe36912abc190ffb42a95937f8c.zip |
Merge pull request #31355 from nextcloud/fix/23441/fix-developer-link
try to fix developer link
Diffstat (limited to 'apps/settings/src')
-rw-r--r-- | apps/settings/src/views/Apps.vue | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/settings/src/views/Apps.vue b/apps/settings/src/views/Apps.vue index 6bbd1008f54..ee7f74c7877 100644 --- a/apps/settings/src/views/Apps.vue +++ b/apps/settings/src/views/Apps.vue @@ -75,8 +75,8 @@ </template> <AppNavigationItem id="app-developer-docs" - href="settings.developerDocumentation" - :title="t('settings', 'Developer documentation') + ' ↗'" /> + :title="t('settings', 'Developer documentation') + ' ↗'" + @click="openDeveloperDocumentation" /> </template> </AppNavigation> @@ -302,6 +302,9 @@ export default { params: { category: this.category }, }) }, + openDeveloperDocumentation() { + window.open(this.settings.developerDocumentation) + }, }, } </script> |