Procházet zdrojové kódy

:construction: Fixed incorrect implementation of splash page check

tabs-content
tomit4 před 3 roky
rodič
revize
db9d0f3203
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      frontend/src/views/OnboardingView.vue

+ 1
- 1
frontend/src/views/OnboardingView.vue Zobrazit soubor

@@ -61,7 +61,7 @@ export default {
61 61
         },
62 62
         updateAnswers(payload) {
63 63
             // null payload is passed on splash page
64
-            if (this.currentStep !== 0) {
64
+            if (payload) {
65 65
                 console.log('this.survey >>', this.survey)
66 66
                 const k = payload.question.survey_stage
67 67
                 this.answered[k] = payload.input

Načítá se…
Zrušit
Uložit