Skip to content

Commit

Permalink
Add SDK bump changelog && fix fault accessing of sidebar config option
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalwengerter committed May 3, 2022
1 parent 590e563 commit cbf308f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions changelog/unreleased/enhancement-update-sdk
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Enhancement: Update SDK

We've updated the ownCloud SDK to version 3.0.0-alpha.7.

- Change - Pass full trash bin path to methods of FilesTrash class: https://github.com/owncloud/owncloud-sdk/pull/1021
- Enhancement - Enforce share_type guest if applies: https://github.com/owncloud/owncloud-sdk/pull/1046
- Enhancement - Create quicklink: https://github.com/owncloud/owncloud-sdk/pull/1041
- Enhancement - Replace deprecated String.prototype.substr(): https://github.com/owncloud/owncloud-sdk/pull/1035
- Enhancement - Add blob resolveType: https://github.com/owncloud/owncloud-sdk/pull/1028
- Enhancement - Adjust share management to properly work with spaces: https://github.com/owncloud/owncloud-sdk/pull/1013
- Bugfix - Always add X-Request-ID: https://github.com/owncloud/owncloud-sdk/pull/1016
- Bugfix - Always add X-Requested-With header: https://github.com/owncloud/owncloud-sdk/pull/1020

https://github.com/owncloud/web/pull/6820
https://github.com/owncloud/owncloud-sdk/releases/tag/v3.0.0-alpha.7
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export default defineComponent({
store.getters.getToken
)
const linkListCollapsed = !store.getters.configuration.sidebar.shares.showAllOnLoad
const linkListCollapsed = !store.getters.configuration.options.sidebar.shares.showAllOnLoad
return { graphClient, hasSpaces: useCapabilitySpacesEnabled(), linkListCollapsed }
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export default {
})
})
const sharesListCollapsed = !store.getters.configuration.sidebar.shares.showAllOnLoad
const sharesListCollapsed = !store.getters.configuration.options.sidebar.shares.showAllOnLoad
return {
loadSpaceTask,
Expand Down

0 comments on commit cbf308f

Please sign in to comment.