From f953334db4639a3316c72d8a4109b9ed19813962 Mon Sep 17 00:00:00 2001 From: rajpatil6939 Date: Mon, 13 Dec 2021 20:35:44 +0530 Subject: [PATCH] on selecting none in the search list of participants was not updating issue is fixed(issues/670 fixed) --- src/views/admin/Participants.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/admin/Participants.vue b/src/views/admin/Participants.vue index e9573a35..e639736f 100644 --- a/src/views/admin/Participants.vue +++ b/src/views/admin/Participants.vue @@ -565,6 +565,10 @@ export default { await this.fetchProjectData(0, this.perPage); this.holdInvestors = this.project.investors; } + else{ + this.project.investors=[]; + } + }, filterVerified(label) {