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/09 13:13:25 UTC

[airavata-django-portal] 01/02: Label walltime units

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

commit 25bcc10c3f541a799aaf1c25840438386ee38777
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Wed Oct 9 09:11:37 2019 -0400

    Label walltime units
---
 .../src/components/applications/ApplicationDeploymentEditor.vue         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/django_airavata/apps/admin/static/django_airavata_admin/src/components/applications/ApplicationDeploymentEditor.vue b/django_airavata/apps/admin/static/django_airavata_admin/src/components/applications/ApplicationDeploymentEditor.vue
index ea531aa..81a1513 100644
--- a/django_airavata/apps/admin/static/django_airavata_admin/src/components/applications/ApplicationDeploymentEditor.vue
+++ b/django_airavata/apps/admin/static/django_airavata_admin/src/components/applications/ApplicationDeploymentEditor.vue
@@ -45,7 +45,7 @@
         <b-form-group label="Default CPU Count" label-for="default-cpu-count">
           <b-form-input id="default-cpu-count" type="number" v-model="data.defaultCPUCount" min="0" :max="maxCPUCount" :disabled="defaultQueueAttributesDisabled"></b-form-input>
         </b-form-group>
-        <b-form-group label="Default Walltime" label-for="default-walltime">
+        <b-form-group label="Default Walltime (in minutes)" label-for="default-walltime">
           <b-form-input id="default-walltime" type="number" v-model="data.defaultWalltime" min="0" :max="maxWalltime" :disabled="defaultQueueAttributesDisabled"></b-form-input>
         </b-form-group>
       </div>