Skip to content

Commit

Permalink
Merge pull request #12134 from nextcloud/backport/12133/stable29
Browse files Browse the repository at this point in the history
[stable29] fix(PublicShareSidebar): fix prop reactivity
  • Loading branch information
nickvergessen authored Apr 17, 2024
2 parents 12c4be8 + 7606ae4 commit 7f7b88c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mainPublicShareSidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

import { createPinia, PiniaVuePlugin } from 'pinia'
import Vue from 'vue'
import Vue, { reactive } from 'vue'
import VueObserveVisibility from 'vue-observe-visibility'
import vOutsideEvents from 'vue-outside-events'
import VueShortKey from 'vue-shortkey'
Expand Down Expand Up @@ -84,9 +84,9 @@ adjustLayout()
// An "isOpen" boolean should be passed to the component, but as it is a
// primitive it would not be reactive; it needs to be wrapped in an object and
// that object passed to the component to get reactivity.
const sidebarState = {
const sidebarState = reactive({
isOpen: false,
}
})

// Open the sidebar by default based on the window width using the same
// threshold as in the main Talk UI (in Talk 7).
Expand Down

0 comments on commit 7f7b88c

Please sign in to comment.