Merge pull request #31423 from nextcloud/backport/31355/stable23

This commit is contained in:
Pytal 2022-03-03 20:52:01 -08:00 committed by GitHub
commit 08e0f73278
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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>