ConfigView.next_door === null

This commit is contained in:
Jörn-Michael Miehe 2023-09-15 17:01:38 +00:00
parent 513b6ecf10
commit 2394bd19a5

View file

@ -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>