try to fix developer link

Signed-off-by: szaimen <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
This commit is contained in:
szaimen 2022-03-03 13:19:40 +01:00 committed by nextcloud-command
parent bbb8798e47
commit 78c1cbf411
5 changed files with 12 additions and 10 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -81,10 +81,9 @@
:title="cat.displayName" />
</template>
<AppNavigationItem
id="app-developer-docs"
href="settings.developerDocumentation"
:title="t('settings', 'Developer documentation') + ' ↗'" />
<AppNavigationItem id="app-developer-docs"
:title="t('settings', 'Developer documentation') + ' ↗'"
@click="openDeveloperDocumentation" />
</template>
</AppNavigation>
@ -308,6 +307,9 @@ export default {
params: { category: this.category },
})
},
openDeveloperDocumentation() {
window.open(this.settings.developerDocumentation)
},
},
}
</script>