Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 83a7222
Author: Jamie V <[email protected]>
Date:   Mon Nov 18 16:37:50 2024 -0800

    simplifying

commit e127923
Author: Jamie V <[email protected]>
Date:   Mon Nov 18 13:48:10 2024 -0800

    dereactify anything going to be sent in a worker message
  • Loading branch information
davetsay committed Nov 20, 2024
1 parent d54f568 commit ec4cd03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/realtimeSessions/components/RealtimeSessionSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@
</template>

<script>
import { toRaw } from 'vue';
import SessionService from 'services/session/SessionService';
export default {
Expand Down Expand Up @@ -135,7 +136,7 @@ export default {
this.selection = model;
},
setActiveTopicOrSession() {
this.sessionService.setActiveTopicOrSession(this.selection.data);
this.sessionService.setActiveTopicOrSession(toRaw(this.selection.data));
this.closeOverlay();
},
Expand Down
3 changes: 2 additions & 1 deletion src/venues/components/VenueDialogComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
import ActiveVenueSelectorComponent from './ActiveVenueSelectorComponent.vue';
import ActiveSessionSelectorComponent from './ActiveSessionSelectorComponent.vue';
import HistoricalSessionSelectorComponent from './HistoricalSessionSelectorComponent.vue';
import { toRaw } from 'vue';
export default {
components: {
Expand Down Expand Up @@ -131,7 +132,7 @@ export default {
this.selectedSession = session;
},
submit() {
this.$emit('submit', this.isActiveVenueSelect, this.selectedSession, this.selectedVenue);
this.$emit('submit', this.isActiveVenueSelect, toRaw(this.selectedSession), this.selectedVenue);
},
async fetchAndSetUrlsForHistoricalSessions() {
try {
Expand Down

0 comments on commit ec4cd03

Please sign in to comment.