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/05/24 18:28:42 UTC

[airavata-django-portal] 06/08: AIRAVATA-3034 changed icons, order of storage columns

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch airavata-3016
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git

commit 52968ff761dbea17509da951897d21fd637c96d2
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Fri May 24 11:16:49 2019 -0400

    AIRAVATA-3034 changed icons, order of storage columns
---
 .../js/components/storage/UserStoragePathViewer.vue            | 10 +++++-----
 .../workspace/templates/django_airavata_workspace/base.html    |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/storage/UserStoragePathViewer.vue b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/storage/UserStoragePathViewer.vue
index b71cc14..95ba055 100644
--- a/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/storage/UserStoragePathViewer.vue
+++ b/django_airavata/apps/workspace/static/django_airavata_workspace/js/components/storage/UserStoragePathViewer.vue
@@ -54,15 +54,15 @@ export default {
           sortable: true
         },
         {
-          label: "Created Time",
-          key: "createdTimestamp",
-          sortable: true
-        },
-        {
           label: "Size",
           key: "size",
           sortable: true,
           formatter: value => this.getFormattedSize(value)
+        },
+        {
+          label: "Created Time",
+          key: "createdTimestamp",
+          sortable: true
         }
       ];
     },
diff --git a/django_airavata/apps/workspace/templates/django_airavata_workspace/base.html b/django_airavata/apps/workspace/templates/django_airavata_workspace/base.html
index 05fa03b..fe3d726 100644
--- a/django_airavata/apps/workspace/templates/django_airavata_workspace/base.html
+++ b/django_airavata/apps/workspace/templates/django_airavata_workspace/base.html
@@ -18,7 +18,7 @@
             <i class="fa fa-flask"></i> <span class=sr-only>Experiments</span>
         </a>
         <a href="{% url 'django_airavata_workspace:projects' %}" class="c-nav__item {% if request.active_nav_item == 'projects' %}is-active{% endif %}" data-toggle=tooltip data-placement=right title=Projects>
-            <i class="fa fa-folder-open"></i> <span class=sr-only>Projects</span>
+            <i class="fa fa-box"></i> <span class=sr-only>Projects</span>
         </a>
         <a href="{% url 'django_airavata_workspace:storage' %}" class="c-nav__item {% if request.active_nav_item == 'storage' %}is-active{% endif %}" data-toggle=tooltip data-placement=right title=Storage>
             <i class="fa fa-folder-open"></i> <span class=sr-only>Storage</span>