- Tag HTML sugli annunci non vengono visualizzati correttamente... <div>...</div>
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user