Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2022-03-01 12:42:18 +0300
committerGitHub <noreply@github.com>2022-03-01 12:42:18 +0300
commit774fac10dce6afe36912abc190ffb42a95937f8c (patch)
tree09d17255263cf00711c05ed6a647b9bc85c542a4 /apps
parent46e6c49b181d5f1fa48d314e9e2e180793563f9b (diff)
parentec2462d5d2682e08a324a140be04d741adb96814 (diff)
Merge pull request #31355 from nextcloud/fix/23441/fix-developer-link
try to fix developer link
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/src/views/Apps.vue7
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>