Skip to content

Commit

Permalink
fix(PublicShareSidebar): fix prop reactivity
Browse files Browse the repository at this point in the history
Signed-off-by: DorraJaouad <[email protected]>
  • Loading branch information
DorraJaouad authored and backportbot[bot] committed Apr 17, 2024
1 parent 12c4be8 commit 7606ae4
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 7606ae4

Please sign in to comment.