mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 04:27:53 +00:00
fix: Remove background color from table footer (#9213)
* fix: remove bg from footer * Update SLATable.vue * Update app/javascript/dashboard/routes/dashboard/settings/reports/components/SLA/SLATable.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> --------- Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<footer
|
<footer
|
||||||
v-if="isFooterVisible"
|
v-if="isFooterVisible"
|
||||||
class="bg-white dark:bg-slate-900 h-12 flex items-center justify-between px-6"
|
class="h-12 flex items-center justify-between px-6"
|
||||||
>
|
>
|
||||||
<table-footer-results
|
<table-footer-results
|
||||||
:first-index="firstIndex"
|
:first-index="firstIndex"
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
:current-page="currentPage"
|
:current-page="currentPage"
|
||||||
:total-count="totalCount"
|
:total-count="totalCount"
|
||||||
:page-size="pageSize"
|
:page-size="pageSize"
|
||||||
class="dark:bg-slate-900 sticky bottom-0 border-t border-slate-75 dark:border-slate-700/50"
|
class="dark:bg-slate-900 bottom-0 border-t border-slate-75 dark:border-slate-700/50"
|
||||||
@page-change="onPageChange"
|
@page-change="onPageChange"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
v-if="isLoading"
|
v-if="isLoading"
|
||||||
class="flex items-center justify-center h-32 bg-white dark:bg-slate-900"
|
class="flex items-center rounded-b-xl justify-center h-32 bg-white dark:bg-slate-900"
|
||||||
>
|
>
|
||||||
<spinner />
|
<spinner />
|
||||||
<span>{{ $t('SLA_REPORTS.LOADING') }}</span>
|
<span>{{ $t('SLA_REPORTS.LOADING') }}</span>
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
v-else
|
v-else
|
||||||
class="flex items-center justify-center h-32 bg-white dark:bg-slate-900"
|
class="flex items-center justify-center rounded-b-xl h-32 bg-white dark:bg-slate-900"
|
||||||
>
|
>
|
||||||
{{ $t('SLA_REPORTS.NO_RECORDS') }}
|
{{ $t('SLA_REPORTS.NO_RECORDS') }}
|
||||||
</div>
|
</div>
|
||||||
@@ -50,7 +50,6 @@
|
|||||||
:current-page="currentPage"
|
:current-page="currentPage"
|
||||||
:total-count="totalCount"
|
:total-count="totalCount"
|
||||||
:page-size="pageSize"
|
:page-size="pageSize"
|
||||||
class="bg-slate-25 dark:bg-slate-900 sticky bottom-0 border-none mt-4"
|
|
||||||
@page-change="onPageChange"
|
@page-change="onPageChange"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user