- Tag HTML sugli annunci non vengono visualizzati correttamente... <div>...</div>

This commit is contained in:
Surya Paolo
2024-09-18 13:11:56 +02:00
parent d4e0f2cf1a
commit 1142526ed8
60 changed files with 1273 additions and 90 deletions

View File

@@ -56,7 +56,7 @@ export default defineComponent({
const num_notifs_unread = computed(() => notifStore.getnumNotifUnread())
// const usernotifs = computed(() => userStore.my.profile.notifs)
const polling = ref(<any> null)
const polling = ref(<any>null)
const eseguipolling = ref(true)
const notifsel = ref(<INotif>{
@@ -65,11 +65,11 @@ export default defineComponent({
})
const open = computed({
get () {
get() {
return props.modelValue
},
set (value) {
set(value) {
return emit('update:modelValue', value)
}
})
@@ -106,7 +106,6 @@ export default defineComponent({
}
function beforeDestroy() {
console.log('beforeDestroy')
if (polling.value)
clearInterval(polling.value)
}