- Il circuito viene creato in automatico, quando scegli una provincia.

This commit is contained in:
Surya Paolo
2023-03-21 18:12:06 +01:00
parent de937c73f7
commit 59af1d0b8b
19 changed files with 76 additions and 112 deletions

View File

@@ -5,9 +5,10 @@
<CTitleBanner
class="q-pa-none"
:title="
!progressStep
? $t('tutorial.title') + ` (` + progressLabel + `)`
: $t('tutorial.title_completed') + ` (` + progressLabel + `)`
(!progressStep
? $t('tutorial.title', {step, numstep}) + ` (` + progressLabel + `)`
: $t('tutorial.title_completed', {step, numstep}) + ` (` + progressLabel + `)`)
"
:bgcolor="getColorTutorial()"
clcolor="text-white"
@@ -168,11 +169,11 @@
? clickFinish()
: $refs.stepper.next()
"
color="primary"
:color="(step === STEP_CIRCUIT && mycircuit && ((!userStore.IsMyCircuitByName(mycircuit.name) && !userStore.IsAskedCircuitByName(mycircuit.name)))) ? 'negative' : 'primary'"
:label="
step === numstep
? $t('dialog.finish')
: $t('dialog.avanti')
: (step === STEP_CIRCUIT && mycircuit && ((!userStore.IsMyCircuitByName(mycircuit.name) && !userStore.IsAskedCircuitByName(mycircuit.name))) ? $t('dialog.salta'): $t('dialog.avanti'))
"
/>
</q-stepper-navigation>