You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/10/28 19:19:12 UTC

[airavata-django-portal] branch master updated: AIRAVATA-3175 Disable editing when experiment is launching

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 5fd289d  AIRAVATA-3175 Disable editing when experiment is launching
5fd289d is described below

commit 5fd289dd29bca706f8a18fb1b9c1b681c2a4ee66
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Mon Oct 28 15:18:58 2019 -0400

    AIRAVATA-3175 Disable editing when experiment is launching
---
 .../js/components/experiment/ExperimentSummary.vue                      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/ExperimentSummary.vue b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/ExperimentSummary.vue
index 6c216e5..95265f3 100644
--- a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/ExperimentSummary.vue
+++ b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/ExperimentSummary.vue
@@ -333,7 +333,7 @@ export default {
     },
     isEditable() {
       return (
-        this.experiment.isEditable && this.localFullExperiment.applicationName
+        this.experiment.isEditable && this.localFullExperiment.applicationName && !this.launching
       );
     },
     isLaunchable(){