diff options
| author | Hamidreza Ghavami <70919649+hamid-gh98@users.noreply.github.com> | 2023-05-31 00:03:45 +0300 |
|---|---|---|
| committer | Hamidreza Ghavami <70919649+hamid-gh98@users.noreply.github.com> | 2023-05-31 00:29:12 +0300 |
| commit | 6c26e40aea8f63b2f422c4f9fbf92c7ff1c0383c (patch) | |
| tree | 9b2726e0621601cc5ad3dbf0a93a0d13a6dc19cf /web | |
| parent | fe963d91ef6c4ddb9e56709f993e8cc09f9786c4 (diff) | |
fix qrModal.client is null
Diffstat (limited to 'web')
| -rw-r--r-- | web/html/common/qrcode_modal.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/common/qrcode_modal.html b/web/html/common/qrcode_modal.html index e6b7b998..57bf810d 100644 --- a/web/html/common/qrcode_modal.html +++ b/web/html/common/qrcode_modal.html @@ -94,7 +94,7 @@ } }, updated() { - if (qrModal.client.subId){ + if (qrModal.client && qrModal.client.subId){ qrModal.subId = qrModal.client.subId; this.setQrCode("qrCode-sub",this.genSubLink(qrModal.subId)); } |
