Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorHamidreza Ghavami <70919649+hamid-gh98@users.noreply.github.com>2023-05-31 00:03:45 +0300
committerHamidreza Ghavami <70919649+hamid-gh98@users.noreply.github.com>2023-05-31 00:29:12 +0300
commit6c26e40aea8f63b2f422c4f9fbf92c7ff1c0383c (patch)
tree9b2726e0621601cc5ad3dbf0a93a0d13a6dc19cf /web
parentfe963d91ef6c4ddb9e56709f993e8cc09f9786c4 (diff)
fix qrModal.client is null
Diffstat (limited to 'web')
-rw-r--r--web/html/common/qrcode_modal.html2
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));
}