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 2021/10/05 19:47:15 UTC

[airavata-django-portal] 04/24: AIRAVATA-3477 bottom margin on QueueSettingsEditor

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

commit 8081d3873e3b5c0613ec70218901f7028acc31d5
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Mon Aug 30 12:13:30 2021 -0400

    AIRAVATA-3477 bottom margin on QueueSettingsEditor
---
 .../js/web-components/QueueSettingsEditor.vue           | 17 +++++------------
 1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/django_airavata/apps/workspace/static/django_airavata_workspace/js/web-components/QueueSettingsEditor.vue b/django_airavata/apps/workspace/static/django_airavata_workspace/js/web-components/QueueSettingsEditor.vue
index a4692f4..8fbe8c1 100644
--- a/django_airavata/apps/workspace/static/django_airavata_workspace/js/web-components/QueueSettingsEditor.vue
+++ b/django_airavata/apps/workspace/static/django_airavata_workspace/js/web-components/QueueSettingsEditor.vue
@@ -195,7 +195,6 @@ export default {
     }
   },
   data() {
-    console.log("QueueSettingsEditor.vue: queueName", this.queueName);
     return {
       localQueueName: this.queueName,
       localTotalCPUCount: this.totalCpuCount,
@@ -236,12 +235,6 @@ export default {
   },
   methods: {
     emitValueChanged(eventName, value) {
-      console.log(
-        "QueueSettingsEditor: emitValueChanged(",
-        eventName,
-        value,
-        ")"
-      );
       const inputEvent = new CustomEvent(eventName, {
         detail: [value],
         composed: true,
@@ -255,13 +248,8 @@ export default {
   },
   watch: {
     queueName(value) {
-      console.log("QueueSettingsEditor: watch(queueName)", value);
       this.localQueueName = value;
     },
-    // nodes(value, oldValue) {
-    //   console.log("QueueSettingsEditor: watch(nodes)", value, oldValue);
-    //   this.localNodeCount = value;
-    // },
     nodeCount(value) {
       this.localNodeCount = value;
     },
@@ -280,4 +268,9 @@ export default {
 
 <style>
 @import url("./styles.css");
+
+:host {
+  display: block;
+  margin-bottom: 1rem;
+}
 </style>