- Aggiornato node.js alla versione 22.18.1

- Aggiornato tutti i pacchetti del server all'ultima versione.
- passato mongoose da versione 5 a versione 6
This commit is contained in:
Surya Paolo
2025-03-03 00:45:56 +01:00
parent 28ed99703d
commit 6d112b8e45
18 changed files with 76 additions and 234 deletions

View File

@@ -190,11 +190,7 @@
costanti.TIPOFAVBOOK.ATTEND,
false,
$t('cmd.attend', {
num: calendarStore.getNumParticipants(
myrec,
true,
tools.peopleWhere.participants
),
num: numpart,
})
)
"
@@ -205,11 +201,7 @@
<q-item-section>
{{
$t("cmd.attend", {
num: calendarStore.getNumParticipants(
myrec,
true,
tools.peopleWhere.participants
),
num: numpart,
})
}}
</q-item-section>
@@ -287,13 +279,7 @@
text-color="primary"
color="white"
class="badge-favbook"
:label="
calendarStore.getNumParticipants(
myrec,
true,
tools.peopleWhere.participants
)
"
:label="numpart"
floating
transparent
/>
@@ -764,10 +750,7 @@
<q-item-section>
<q-item-label lines="1">
<span
v-html="
tools.getlinkEmail(myrec.email, t('services.email'))
"
<span v-html="tools.getlinkEmailTo(myrec.email)"
/></q-item-label>
</q-item-section>
</q-item>
@@ -809,12 +792,7 @@
<q-item
clickable
v-if="
table === shared_consts.TABLES_MYBACHECAS &&
calendarStore.getNumParticipants(
myrec,
true,
tools.peopleWhere.participants
) > 0
table === shared_consts.TABLES_MYBACHECAS && numpart > 0
"
>
<q-item-section avatar>
@@ -823,32 +801,19 @@
<q-item-section>
<q-item-label lines="1">
<span style="display: none">{{
(part = calendarStore.getNumParticipants(
myrec,
true,
tools.peopleWhere.participants
))
}}</span>
<q-btn
rounded
color="primary"
:label="
part
? $t('cmd.attend1', { num: part })
: $t('cmd.attend', { num: part })
numpart
? $t('cmd.attend1', { num: numpart })
: $t('cmd.attend', { num: numpart })
"
@click="
clicca(
costanti.TIPOFAVBOOK.ATTEND,
false,
$t('cmd.attend', {
num: calendarStore.getNumParticipants(
myrec,
true,
tools.peopleWhere.participants
),
})
$t('cmd.attend', { num: numpart })
)
"
>