Skip to content

Commit ab00ab0

Browse files
authored
Add some fixes after merging vue3 and automations (#54)
1 parent e58335f commit ab00ab0

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

frontend/src/assets/scss/layout.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ hr {
142142
@apply bg-transparent;
143143
}
144144
.el-loading-spinner {
145-
@apply relative flex items-center justify-center h-full;
145+
@apply relative flex items-center justify-center h-full top-auto mt-auto;
146146
.circular {
147147
@apply w-10 h-10;
148148
}

frontend/src/modules/tenant/components/tenant-list-table.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
<div style="margin-bottom: 8px">
7979
<el-button
8080
:disabled="invitationLoading"
81-
type="success"
81+
class="btn btn--secondary btn--secondary--green"
8282
@click="
8383
doAcceptInvitation(
8484
invitationToken(scope.row)
@@ -93,7 +93,7 @@
9393
<div>
9494
<el-button
9595
:disabled="invitationLoading"
96-
type="danger"
96+
class="btn btn--secondary btn--secondary--red"
9797
@click="
9898
doDeclineInvitationWithConfirm(
9999
invitationToken(scope.row)

frontend/src/premium/user/components/user-list-table.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
<el-table-column
5858
:label="fields.status.label"
5959
:prop="fields.status.name"
60-
sortable="custom"
6160
>
6261
<template #default="scope">
6362
<el-tag

0 commit comments

Comments
 (0)