++ DebugOn status (to see what happened)

fix visu activities
This commit is contained in:
Surya Paolo
2022-12-14 22:07:23 +01:00
parent bd0eab53ae
commit fbcd076705
22 changed files with 69 additions and 33 deletions

View File

@@ -1,4 +1,5 @@
import {
computed,
defineComponent, onMounted, PropType, ref, toRef, watch,
} from 'vue'
@@ -100,6 +101,8 @@ export default defineComponent({
const myel = toRef(props, 'myelem')
const newtype = ref(<any>'')
const isAppRunning = computed(() => globalStore.isAppRunning )
watch(() => myel.value.order, (value, oldval) => {
mounted()
})
@@ -280,6 +283,7 @@ export default defineComponent({
visushare,
social,
clickshare,
isAppRunning,
}
},

View File

@@ -441,7 +441,10 @@
</div>
<div v-else-if="myel.type === shared_consts.ELEMTYPE.REGISTRATION">
<div v-if="editOn" class="elemEdit">Registrazione</div>
<CRegistration />
<div v-if="isAppRunning || $q.screen.gt.xs">
<CRegistration />
</div>
</div>
<div v-else-if="myel.type === shared_consts.ELEMTYPE.BUTTON">
<div v-if="editOn" class="elemEdit"></div>