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/07/07 19:57:35 UTC

[airavata-django-portal] branch develop updated: AIRAVATA-3632 Remove std input and data is staged options

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 b4121b93 AIRAVATA-3632 Remove std input and data is staged options
b4121b93 is described below

commit b4121b93809f64121a9608fc62c7d1e15ca51866
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Thu Jul 7 15:57:26 2022 -0400

    AIRAVATA-3632 Remove std input and data is staged options
---
 .../applications/ApplicationInputFieldEditor.vue   | 63 +++++++---------------
 1 file changed, 18 insertions(+), 45 deletions(-)

diff --git a/django_airavata/apps/admin/static/django_airavata_admin/src/components/applications/ApplicationInputFieldEditor.vue b/django_airavata/apps/admin/static/django_airavata_admin/src/components/applications/ApplicationInputFieldEditor.vue
index 417bc448..e87e4f1b 100644
--- a/django_airavata/apps/admin/static/django_airavata_admin/src/components/applications/ApplicationInputFieldEditor.vue
+++ b/django_airavata/apps/admin/static/django_airavata_admin/src/components/applications/ApplicationInputFieldEditor.vue
@@ -66,15 +66,29 @@
           :disabled="readonly"
         ></b-form-input>
       </b-form-group>
+      <b-form-group
+        class="flex-fill"
+        label="Required on Command Line"
+        :label-for="id + '-required-command-line'"
+        description="Add this input's value to the command line in the generated job script."
+      >
+        <b-form-radio-group
+          :id="id + '-required-command-line'"
+          v-model="data.requiredToAddedToCommandLine"
+          :options="trueFalseOptions"
+          :disabled="readonly"
+        >
+        </b-form-radio-group>
+      </b-form-group>
       <div class="d-flex">
         <b-form-group
           class="flex-fill"
-          label="Standard Input"
-          :label-for="id + '-standard-input'"
+          label="Required"
+          :label-for="id + '-required'"
         >
           <b-form-radio-group
-            :id="id + '-standard-input'"
-            v-model="data.standardInput"
+            :id="id + '-required'"
+            v-model="data.isRequired"
             :options="trueFalseOptions"
             :disabled="readonly"
           >
@@ -105,47 +119,6 @@
           :disabled="readonly"
         />
       </b-form-group>
-      <div class="d-flex">
-        <b-form-group
-          class="flex-fill"
-          label="Data is staged"
-          :label-for="id + '-data-staged'"
-        >
-          <b-form-radio-group
-            :id="id + '-data-staged'"
-            v-model="data.dataStaged"
-            :options="trueFalseOptions"
-            :disabled="readonly"
-          >
-          </b-form-radio-group>
-        </b-form-group>
-        <b-form-group
-          class="flex-fill"
-          label="Required"
-          :label-for="id + '-required'"
-        >
-          <b-form-radio-group
-            :id="id + '-required'"
-            v-model="data.isRequired"
-            :options="trueFalseOptions"
-            :disabled="readonly"
-          >
-          </b-form-radio-group>
-        </b-form-group>
-      </div>
-      <b-form-group
-        class="flex-fill"
-        label="Required on Command Line"
-        :label-for="id + '-required-command-line'"
-      >
-        <b-form-radio-group
-          :id="id + '-required-command-line'"
-          v-model="data.requiredToAddedToCommandLine"
-          :options="trueFalseOptions"
-          :disabled="readonly"
-        >
-        </b-form-radio-group>
-      </b-form-group>
       <b-form-group
         label="Advanced Input Field Modification Metadata"
         :label-for="id + '-metadata'"