From c179c4d40ba023b9f0ab75f7e15443f122f1d99a Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 7 Apr 2020 00:27:02 +0000 Subject: [PATCH] --- .../components/report-selector-control.vue | 4 +- ayanova/src/views/widget.vue | 45 ++++++++++--------- 2 files changed, 25 insertions(+), 24 deletions(-) diff --git a/ayanova/src/components/report-selector-control.vue b/ayanova/src/components/report-selector-control.vue index cb20850d..cc8d268f 100644 --- a/ayanova/src/components/report-selector-control.vue +++ b/ayanova/src/components/report-selector-control.vue @@ -90,12 +90,12 @@ export default { }); }, ok() { - this.resolve(this.selectedReport); this.isVisible = false; + this.resolve(this.selectedReport); }, cancel() { - this.resolve(null); this.isVisible = false; + this.resolve(null); } } }; diff --git a/ayanova/src/views/widget.vue b/ayanova/src/views/widget.vue index d9d114d7..2547c11b 100644 --- a/ayanova/src/views/widget.vue +++ b/ayanova/src/views/widget.vue @@ -1,10 +1,8 @@