We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbb8798 commit d3b1323Copy full SHA for d3b1323
apps/settings/src/views/Apps.vue
@@ -81,10 +81,9 @@
81
:title="cat.displayName" />
82
</template>
83
84
- <AppNavigationItem
85
- id="app-developer-docs"
86
- href="settings.developerDocumentation"
87
- :title="t('settings', 'Developer documentation') + ' ↗'" />
+ <AppNavigationItem id="app-developer-docs"
+ :title="t('settings', 'Developer documentation') + ' ↗'"
+ @click="openDeveloperDocumentation" />
88
89
</AppNavigation>
90
@@ -308,6 +307,9 @@ export default {
308
307
params: { category: this.category },
309
})
310
},
+ openDeveloperDocumentation() {
311
+ window.open(this.settings.developerDocumentation)
312
+ },
313
314
}
315
</script>
0 commit comments