Skip to content
Merged
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
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