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/05/07 18:52:32 UTC

[airavata-django-portal] branch master updated: Bug fix: save disabled if form invalid *or* input uploading

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 fb8d142  Bug fix: save disabled if form invalid *or* input uploading
fb8d142 is described below

commit fb8d142606d24e3b9980e49e22ca67ae5e8ac744
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Tue May 7 14:52:23 2019 -0400

    Bug fix: save disabled if form invalid *or* input uploading
---
 .../js/components/experiment/ExperimentEditor.vue                       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/ExperimentEditor.vue b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/ExperimentEditor.vue
index d54c1dd..8118a6c 100644
--- a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/ExperimentEditor.vue
+++ b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/experiment/ExperimentEditor.vue
@@ -223,7 +223,7 @@ export default {
       );
     },
     isSaveDisabled: function() {
-      return !this.valid && this.hasUploadingInputs;
+      return !this.valid || this.hasUploadingInputs;
     },
     dirty() {
       return this.edited && !this.saved;