diff --git a/components/dialog/misc/editRoomSettingsDialog.vue b/components/dialog/misc/editRoomSettingsDialog.vue index 2420ccf..d5e5cc7 100644 --- a/components/dialog/misc/editRoomSettingsDialog.vue +++ b/components/dialog/misc/editRoomSettingsDialog.vue @@ -109,7 +109,7 @@ export default { scrambleVisualizationOptions: [ { text: '2D', value: '2D' }, - { text: '3D (Not available on all puzzles)', value: '3D' }, + { text: '3D (Select Puzzles Only)', value: '3D' }, ], } }, diff --git a/components/interface/viewCuberRoomsInterface.vue b/components/interface/viewCuberRoomsInterface.vue index 001c67a..d13450f 100644 --- a/components/interface/viewCuberRoomsInterface.vue +++ b/components/interface/viewCuberRoomsInterface.vue @@ -272,7 +272,7 @@ export default { } }, async loadData() { - this.loading.loadData = true + //this.loading.loadData = true try { let { data } = await this.$apollo.query({ query: CUBER_ROOMS_QUERY, @@ -294,11 +294,11 @@ export default { } catch (err) { sharedService.handleError(err, this.$root) } - this.loading.loadData = false + //this.loading.loadData = false }, reset(initialLoad = false) { - if (!this.status) return + if (!this.status || !this.cuber) return if (initialLoad) this.options.initialLoad = true this.loadData() diff --git a/components/interface/viewCuberSolvesInterface.vue b/components/interface/viewCuberSolvesInterface.vue index ae1b815..ba8ac29 100644 --- a/components/interface/viewCuberSolvesInterface.vue +++ b/components/interface/viewCuberSolvesInterface.vue @@ -18,6 +18,14 @@ {{ generateSolveString(item) }} + {{ item.is_tracked ? 'mdi-alarm' : 'mdi-alarm-off' }}