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/06/10 15:32:29 UTC

[airavata-django-portal] 07/08: AIRAVATA-3057 Styling file selection cancel

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 40b65ff4401af6a100894868da3fe0a0e2518732
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Mon Jun 10 11:28:38 2019 -0400

    AIRAVATA-3057 Styling file selection cancel
---
 .../storage/UserStorageFileSelectionContainer.vue           | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/storage/UserStorageFileSelectionContainer.vue b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/storage/UserStorageFileSelectionContainer.vue
index 9a4e581..154c14d 100644
--- a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/storage/UserStorageFileSelectionContainer.vue
+++ b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/storage/UserStorageFileSelectionContainer.vue
@@ -10,11 +10,14 @@
       :selected-data-product-uris="selectedDataProductUris"
     >
     </user-storage-path-viewer>
-    <!-- TODO: push this right? -->
-    <b-link
-      class="card-link"
-      @click="$emit('cancel')"
-    >Cancel</b-link>
+    <template slot="footer">
+      <div class="d-flex justify-content-end">
+        <b-link
+          class="text-secondary"
+          @click="$emit('cancel')"
+        >Cancel</b-link>
+      </div>
+    </template>
   </b-card>
 </template>