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 2022/06/16 21:37:08 UTC

[airavata-django-portal] branch develop updated: AIRAVATA-3630 Default showQueueSettings to true

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 4047f631 AIRAVATA-3630 Default showQueueSettings to true
4047f631 is described below

commit 4047f6313c2bdadfcc3457f0688722f12adb089b
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Thu Jun 16 17:36:59 2022 -0400

    AIRAVATA-3630 Default showQueueSettings to true
---
 .../django_airavata_api/js/models/ApplicationInterfaceDefinition.js | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/django_airavata/apps/api/static/django_airavata_api/js/models/ApplicationInterfaceDefinition.js b/django_airavata/apps/api/static/django_airavata_api/js/models/ApplicationInterfaceDefinition.js
index 010d0ecf..008f3a0a 100644
--- a/django_airavata/apps/api/static/django_airavata_api/js/models/ApplicationInterfaceDefinition.js
+++ b/django_airavata/apps/api/static/django_airavata_api/js/models/ApplicationInterfaceDefinition.js
@@ -39,7 +39,11 @@ const FIELDS = [
     default: false,
   },
   "userHasWriteAccess",
-  "showQueueSettings",
+  {
+    name: "showQueueSettings",
+    type: "boolean",
+    default: true,
+  },
 ];
 
 export default class ApplicationInterfaceDefinition extends BaseModel {