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/07/06 16:58:04 UTC

[airavata-django-portal] branch develop updated: AIRAVATA-3260 Fix prop that sets fixed table layout

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 37fe5b9  AIRAVATA-3260 Fix prop that sets fixed table layout
37fe5b9 is described below

commit 37fe5b9c9113f1c3d6033da535ba6cbd1a164af6
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Tue Jul 6 12:57:51 2021 -0400

    AIRAVATA-3260 Fix prop that sets fixed table layout
---
 .../src/components/users/IdentityServiceUserManagementContainer.vue     | 2 +-
 .../src/components/users/UnverifiedEmailUserManagementContainer.vue     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/django_airavata/apps/admin/static/django_airavata_admin/src/components/users/IdentityServiceUserManagementContainer.vue b/django_airavata/apps/admin/static/django_airavata_admin/src/components/users/IdentityServiceUserManagementContainer.vue
index 2fc2737..2ddfe6e 100644
--- a/django_airavata/apps/admin/static/django_airavata_admin/src/components/users/IdentityServiceUserManagementContainer.vue
+++ b/django_airavata/apps/admin/static/django_airavata_admin/src/components/users/IdentityServiceUserManagementContainer.vue
@@ -25,7 +25,7 @@
       <div class="col">
         <div class="card">
           <div class="card-body">
-            <b-table hover :fields="fields" :items="items" fixed="true">
+            <b-table hover :fields="fields" :items="items" :fixed="true">
               <template slot="creationTime" slot-scope="data">
                 <human-date :date="data.value" />
               </template>
diff --git a/django_airavata/apps/admin/static/django_airavata_admin/src/components/users/UnverifiedEmailUserManagementContainer.vue b/django_airavata/apps/admin/static/django_airavata_admin/src/components/users/UnverifiedEmailUserManagementContainer.vue
index 3a73688..7c4e50d 100644
--- a/django_airavata/apps/admin/static/django_airavata_admin/src/components/users/UnverifiedEmailUserManagementContainer.vue
+++ b/django_airavata/apps/admin/static/django_airavata_admin/src/components/users/UnverifiedEmailUserManagementContainer.vue
@@ -4,7 +4,7 @@
       <div class="col">
         <div class="card">
           <div class="card-body">
-            <b-table hover :fields="fields" :items="items" fixed="true">
+            <b-table hover :fields="fields" :items="items" :fixed="true">
               <template slot="creationTime" slot-scope="data">
                 <human-date :date="data.value" />
               </template>