Fix room qr
Use v-show instead of v-if, otherwise our reference will not exist (yet) when populating the QR code. Issue #107.
This commit is contained in:
parent
7cc51f22bc
commit
779e53c3b2
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@
|
||||||
<div class="small">Created by {{ creator }}</div>
|
<div class="small">Created by {{ creator }}</div>
|
||||||
<v-expand-transition>
|
<v-expand-transition>
|
||||||
<canvas
|
<canvas
|
||||||
v-if="publicRoomLink"
|
v-show="publicRoomLink"
|
||||||
ref="roomQr"
|
ref="roomQr"
|
||||||
class="qr"
|
class="qr"
|
||||||
id="room-qr"
|
id="room-qr"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue