ConfigView.next_door === null
This commit is contained in:
parent
513b6ecf10
commit
2394bd19a5
1 changed files with 2 additions and 1 deletions
|
@ -17,7 +17,8 @@
|
||||||
<dd>{{ num_user_doors }}</dd>
|
<dd>{{ num_user_doors }}</dd>
|
||||||
|
|
||||||
<dt>Zeit zum nächsten Türchen</dt>
|
<dt>Zeit zum nächsten Türchen</dt>
|
||||||
<dd><CountDown :millis="next_door" /></dd>
|
<dd v-if="next_door === null">Kein nächstes Türchen</dd>
|
||||||
|
<dd v-else><CountDown :millis="next_door" /></dd>
|
||||||
|
|
||||||
<dt>Erstes Türchen</dt>
|
<dt>Erstes Türchen</dt>
|
||||||
<dd>{{ config_model.puzzle.first }}</dd>
|
<dd>{{ config_model.puzzle.first }}</dd>
|
||||||
|
|
Loading…
Reference in a new issue