This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/develop by this push:
     new 8a5ba65  Adding 'All' option to experiment browse status filter
     new 17ea4eb  Merge pull request #57 from 
akbranam/AIRAVATA-3416-All-Status-Experiment-Browse-Filter
8a5ba65 is described below

commit 8a5ba658f2ef089998082e9b0fab903a34ea469b
Author: akbranam <[email protected]>
AuthorDate: Fri Mar 19 14:04:27 2021 -0400

    Adding 'All' option to experiment browse status filter
---
 .../js/containers/ExperimentListContainer.vue                        | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 
a/django_airavata/apps/workspace/static/django_airavata_workspace/js/containers/ExperimentListContainer.vue
 
b/django_airavata/apps/workspace/static/django_airavata_workspace/js/containers/ExperimentListContainer.vue
index b282125..bbdeb22 100644
--- 
a/django_airavata/apps/workspace/static/django_airavata_workspace/js/containers/ExperimentListContainer.vue
+++ 
b/django_airavata/apps/workspace/static/django_airavata_workspace/js/containers/ExperimentListContainer.vue
@@ -44,6 +44,7 @@
                 <template slot="first">
                   <option :value="null" disabled>Select an experiment status 
to filter by</option>
                 </template>
+                <option value="ALL">ALL</option>
                 <option value="CREATED">Created</option>
                 <option value="VALIDATED">Validated</option>
                 <option value="SCHEDULED">Scheduled</option>
@@ -228,7 +229,9 @@ export default {
         }
       }
       if (this.experimentStatusSelect){
-        searchParams["STATUS"]= this.experimentStatusSelect;
+        if (this.experimentStatusSelect != "ALL"){
+          searchParams["STATUS"]= this.experimentStatusSelect;
+        }
       }
       if (this.fromDate && this.toDate){
         searchParams["FROM_DATE"] = this.fromDate.getTime();

Reply via email to