- fix: Invio RIS (non si vedevano i circuiti !)

- se si usava l'username telegram per registrarsi non faceva il controllo delle minuscole.
- bottone "Invia RIS" era scomparso
This commit is contained in:
Surya Paolo
2024-11-03 19:15:44 +01:00
parent a46b988440
commit 90ed545070
125 changed files with 4189 additions and 3592402 deletions

View File

@@ -109,6 +109,7 @@ export default defineComponent({
const { t } = useI18n()
const animare = ref(0)
const animarecard = ref(0)
const slide = ref(0)
const slide2 = ref(0)
const disableSave = ref(true)
@@ -127,8 +128,6 @@ export default defineComponent({
const isAppRunning = computed(() => globalStore.isAppRunning)
const currentCardsPerSlide = computed(() => {
if ($q.screen.lt.sm) return 1
if ($q.screen.lt.md) return 2
return myel.value.num2 ? myel.value.num2 : 2! // cardsPerSlide
})
@@ -281,7 +280,7 @@ export default defineComponent({
// Classe per le colonne delle card
function cardColumnClass() {
const width = 12 / currentCardsPerSlide.value
return `col-xs-12 col-sm-6 col-md-${width}`
return `col-${width}`
}
onMounted(mounted)
@@ -324,6 +323,7 @@ export default defineComponent({
cardColumnClass,
cardGroups,
currentCardsPerSlide,
animarecard,
}
},