From 7c4585876475ce1a8c39a6e81d6526bf4c8d025d Mon Sep 17 00:00:00 2001 From: Joan Sanchez Date: Thu, 18 Jun 2020 12:59:37 +0200 Subject: [PATCH] Sms dialog fix --- modules/client/front/descriptor/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/client/front/descriptor/index.js b/modules/client/front/descriptor/index.js index d079b38da..560eaa00e 100644 --- a/modules/client/front/descriptor/index.js +++ b/modules/client/front/descriptor/index.js @@ -9,7 +9,7 @@ class Controller extends Descriptor { set entity(value) { super.entity = value; - if (this.$params.sendSMS) + if (value && this.$params.sendSMS) this.showSMSDialog(); }