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 41d559dd AIRAVATA-3687 Add experiment data dir to experiment details 
in statistics view
41d559dd is described below

commit 41d559dd901e3b2244ffc72aa45ccd124fa621c2
Author: Marcus Christie <[email protected]>
AuthorDate: Tue Feb 21 17:09:02 2023 -0500

    AIRAVATA-3687 Add experiment data dir to experiment details in statistics 
view
---
 .../src/components/statistics/ExperimentDetailsView.vue       | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git 
a/django_airavata/apps/admin/static/django_airavata_admin/src/components/statistics/ExperimentDetailsView.vue
 
b/django_airavata/apps/admin/static/django_airavata_admin/src/components/statistics/ExperimentDetailsView.vue
index 66f187b0..18607aac 100644
--- 
a/django_airavata/apps/admin/static/django_airavata_admin/src/components/statistics/ExperimentDetailsView.vue
+++ 
b/django_airavata/apps/admin/static/django_airavata_admin/src/components/statistics/ExperimentDetailsView.vue
@@ -253,6 +253,10 @@
             </ul>
           </td>
         </tr>
+        <tr>
+          <th scope="row">Experiment Data Dir</th>
+          <td>{{ experimentDataDir }}</td>
+        </tr>
         <tr>
           <th scope="row">Errors</th>
           <td>
@@ -438,6 +442,13 @@ export default {
         return [];
       }
     },
+    experimentDataDir() {
+      if (this.experiment && this.experiment.userConfigurationData) {
+        return this.experiment.userConfigurationData.experimentDataDir;
+      } else {
+        return null;
+      }
+    },
   },
   created() {
     services.FullExperimentService.retrieve({

Reply via email to