Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@conduction/nextcloud-vue": "^2.24.2",
"@conduction/nextcloud-vue": "^2.24.4",
"@nextcloud/auth": "^2.6.0",
"@nextcloud/axios": "~2.5.2",
"@nextcloud/capabilities": "^1.2.1",
Expand Down
6 changes: 5 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
`objectSidebarState` when a detail page enables `config.sidebar`; this
slot renders the tabs. Mirrors the decidesk / procest shell pattern.
-->
<template #sidebar>
<template #sidebar="{ pageSidebarComponent }">
<CnObjectSidebar
v-if="objectSidebarState.active"
:title="objectSidebarState.title"
Expand All @@ -43,6 +43,10 @@
:registry="registry"
:open="objectSidebarState.open"
@update:open="objectSidebarState.open = $event" />
<!-- The manifest page's own sidebar (pages[].sidebarComponent). Passed in
as a slot prop because filling this slot suppresses CnAppRoot's
fallback, which is what hid the flow sidebar. -->
<component :is="pageSidebarComponent" v-if="pageSidebarComponent" />
</template>
</CnAppRoot>
</template>
Expand Down Expand Up @@ -178,7 +182,7 @@
*
* @param {string} key Translation key.
* @return {string} Translated string (or the key on miss).
* @spec exclude Shell glue — closes over @nextcloud/l10n translate so

Check warning on line 185 in src/App.vue

View workflow job for this annotation

GitHub Actions / lint-check

Unexpected inline JSDoc tag. Did you mean to use {@nextcloud}, \@nextcloud, or `@nextcloud`?

Check warning on line 185 in src/App.vue

View workflow job for this annotation

GitHub Actions / quality / Vue Quality (eslint)

Unexpected inline JSDoc tag. Did you mean to use {@nextcloud}, \@nextcloud, or `@nextcloud`?

Check warning on line 185 in src/App.vue

View workflow job for this annotation

GitHub Actions / quality / Vue Quality (eslint)

Unexpected inline JSDoc tag. Did you mean to use {@nextcloud}, \@nextcloud, or `@nextcloud`?
* CnAppRoot need not know the app id; no app-specific behavior.
*/
translateForApp(key) {
Expand Down
Loading