commit ede33f90440fc6ab5940cb604a914057d733e8f3 parent c70b5fe655c4728977416e86a05750ca77baf398 Author: Sebastian <sebasjm@taler-systems.com> Date: Wed, 8 Apr 2026 16:44:30 -0300 fix #11341 Diffstat:
25 files changed, 52 insertions(+), 52 deletions(-)
diff --git a/packages/merchant-backoffice-ui/src/components/modal/index.tsx b/packages/merchant-backoffice-ui/src/components/modal/index.tsx @@ -293,7 +293,7 @@ export function CompareAccountsModal({ reported account information does not match the details in the form. </i18n.Translate> </p> - <div class="table-container"> + <div class=""> <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> <thead> <tr> @@ -508,7 +508,7 @@ export function ValidBankAccount({ )} </td> </tr> - <div class="table-container"> + <div class=""> <table> <tbody> <tr> diff --git a/packages/merchant-backoffice-ui/src/components/product/ProductList.tsx b/packages/merchant-backoffice-ui/src/components/product/ProductList.tsx @@ -37,7 +37,7 @@ export function ProductList({ list, actions = [] }: Props): VNode { const { i18n } = useTranslationContext(); const { config } = useSessionContext(); return ( - <div class="table-container"> + <div class=""> <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> <thead> <tr> diff --git a/packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx b/packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx @@ -109,7 +109,7 @@ export function CardTable({ </div> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {instances.length > 0 ? ( <Table @@ -162,7 +162,7 @@ function Table({ const { i18n } = useTranslationContext(); const { lib, impersonate } = useSessionContext(); return ( - <div class="table-container"> + <div class=""> <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> <thead> <tr> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx b/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx @@ -52,7 +52,7 @@ export default function AccessTokenCreatePage({ description={i18n.str`Access token created`} label={i18n.str`Confirm`} > - <div class="table-container"> + <div class=""> <table> <tbody> <tr> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx @@ -74,7 +74,7 @@ export function CardTable({ </div> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {tokens.length > 0 ? ( <Table @@ -113,7 +113,7 @@ function Table({ const [preferences] = usePreference(); return ( <Fragment> - <div class="table-container"> + <div class=""> {onLoadMoreBefore && ( <Tooltip text={i18n.str`Load more devices before the first one`}> <button diff --git a/packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx @@ -140,7 +140,7 @@ export function CardTable({ accounts, onCreate, onSelect }: Props): VNode { </div> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {accounts.length > 0 ? ( <Table @@ -209,7 +209,7 @@ function Table({ accounts, onDelete, onSelect }: TableProps): VNode { //FIXME: this code doesn't adapt well on new payto definitions return ( <Fragment> - <div class="table-container"> + <div class=""> <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> <thead> <tr> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx @@ -100,7 +100,7 @@ export function CardTable({ </div> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {devices.length > 0 ? ( <Table @@ -141,7 +141,7 @@ function Table({ }: TableProps): VNode { const { i18n } = useTranslationContext(); return ( - <div class="table-container"> + <div class=""> {onLoadMoreBefore && ( <Tooltip text={i18n.str`Load more devices before the first one`}> <button diff --git a/packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx @@ -213,7 +213,7 @@ function ProductListSmall({ </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {result.body.length > 0 ? ( <Table instances={result.body} onSelect={onSelect} /> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx @@ -100,7 +100,7 @@ export function CardTable({ </div> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {devices.length > 0 ? ( <Table @@ -141,7 +141,7 @@ function Table({ }: TableProps): VNode { const { i18n } = useTranslationContext(); return ( - <div class="table-container"> + <div class=""> {onLoadMoreBefore && ( <Tooltip text={i18n.str`Load more groups before the first one`}> <button diff --git a/packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx @@ -55,7 +55,7 @@ export function ListPage({ <div class="card-header-icon" aria-label="more options" /> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {status.kyc_data.length > 0 ? ( <PendingTable @@ -90,7 +90,7 @@ function PendingTable({ }: PendingTableProps): VNode { const { i18n } = useTranslationContext(); return ( - <div class="table-container"> + <div class=""> <table class="table is-striped is-hoverable is-fullwidth"> <thead> <tr> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx @@ -1195,9 +1195,9 @@ function CardTableIncoming({ return ( <div class="card has-table"> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> - <div class="table-container"> + <div class=""> <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> <thead> <tr> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx @@ -118,7 +118,7 @@ export function CardTable({ </HtmlPersonaFlag> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {orders.length > 0 ? ( <Table @@ -186,7 +186,7 @@ function Table({ <Fragment> <LocalNotificationBannerBulma notification={notification} /> - <div class="table-container"> + <div class=""> {onLoadMoreBefore && ( <button class="button is-fullwidth" onClick={onLoadMoreBefore}> <i18n.Translate>Load first page</i18n.Translate> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx @@ -100,7 +100,7 @@ export function CardTable({ </div> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {devices.length > 0 ? ( <Table @@ -141,7 +141,7 @@ function Table({ }: TableProps): VNode { const { i18n } = useTranslationContext(); return ( - <div class="table-container"> + <div class=""> {onLoadMoreBefore && ( <Tooltip text={i18n.str`Load more devices before the first one`}> <button diff --git a/packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx @@ -100,7 +100,7 @@ export function CardTable({ </div> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {pots.length > 0 ? ( <Table @@ -141,7 +141,7 @@ function Table({ }: TableProps): VNode { const { i18n } = useTranslationContext(); return ( - <div class="table-container"> + <div class=""> {onLoadMoreBefore && ( <Tooltip text={i18n.str`Load more pots before the first one`}> <button diff --git a/packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx @@ -103,7 +103,7 @@ export function CardTable({ </div> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {instances.length > 0 ? ( <Table @@ -165,7 +165,7 @@ function Table({ } }; return ( - <div class="table-container"> + <div class=""> {onLoadMoreBefore && ( <button class="button is-fullwidth" onClick={onLoadMoreBefore}> <i18n.Translate>Load first page</i18n.Translate> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx @@ -102,7 +102,7 @@ export function CardTable({ </div> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {reports.length > 0 ? ( <Table @@ -143,7 +143,7 @@ function Table({ }: TableProps): VNode { const { i18n } = useTranslationContext(); return ( - <div class="table-container"> + <div class=""> {onLoadMoreBefore && ( <Tooltip text={i18n.str`Load more devices before the first one`}> <button diff --git a/packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx b/packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx @@ -222,9 +222,9 @@ export function OrdersChart({ options={orderStatsChartOptions(i18n, chart.smallestOrderDate)} /> ) : ( - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> - <div class="table-container"> + <div class=""> <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> <thead> <tr> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx b/packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx @@ -229,9 +229,9 @@ export function RevenueChart({ options={revenueChartOptions(i18n, activeFilter)} /> ) : ( - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> - <div class="table-container"> + <div class=""> <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> <thead> <tr> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx @@ -56,7 +56,7 @@ export function CardTable({ </p> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {amountStatSlugs.length > 0 ? ( <Table @@ -96,7 +96,7 @@ function Table({ }: TableProps): VNode { const { i18n } = useTranslationContext(); return ( - <div class="table-container"> + <div class=""> <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> <thead> <tr> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx @@ -75,7 +75,7 @@ export function CardTable({ </div> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {templates.length > 0 ? ( <Table @@ -121,7 +121,7 @@ function Table({ }: TableProps): VNode { const { i18n } = useTranslationContext(); return ( - <div class="table-container"> + <div class=""> {onLoadMoreBefore && ( <Tooltip text={i18n.str`Load more templates before the first one`}> <button diff --git a/packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx @@ -69,7 +69,7 @@ export function CardTable({ </div> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {instances.length > 0 ? ( <Table @@ -105,7 +105,7 @@ function Table({ }: TableProps): VNode { const { i18n } = useTranslationContext(); return ( - <div class="table-container"> + <div class=""> <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> <thead> <tr> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx @@ -194,9 +194,9 @@ function DetailsPageInternal({ </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> - <div class="table-container"> + <div class=""> <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> <thead></thead> <tbody> @@ -248,10 +248,10 @@ function DetailsPageInternal({ </p> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {orders.length > 0 ? ( - <div class="table-container"> + <div class=""> <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> <thead> <tr> @@ -299,9 +299,9 @@ function DetailsPageInternal({ </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> - <div class="table-container"> + <div class=""> <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> <thead></thead> <tbody> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx @@ -61,10 +61,10 @@ export function CardTableIncoming({ </p> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {transfers.length > 0 ? ( - <div class="table-container"> + <div class=""> {onLoadMoreBefore && ( <Tooltip text={i18n.str`Load more wire transfers preceding the first one`} @@ -194,10 +194,10 @@ export function CardTableVerified({ </p> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {transfers.length > 0 ? ( - <div class="table-container"> + <div class=""> {onLoadMoreBefore && ( <Tooltip text={i18n.str`Load more wire transfers preceding the first one`} diff --git a/packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx @@ -106,7 +106,7 @@ export function CardTable({ </div> </header> <div class="card-content"> - <div class="b-table has-pagination"> + <div class=" has-pagination"> <div class="table-wrapper has-mobile-cards"> {webhooks.length > 0 ? ( <Table @@ -147,7 +147,7 @@ function Table({ }: TableProps): VNode { const { i18n } = useTranslationContext(); return ( - <div class="table-container"> + <div class=""> {onLoadMoreBefore && ( <Tooltip text={i18n.str`Load more webhooks before the first one`}> <button diff --git a/packages/merchant-backoffice-ui/src/scss/main.scss b/packages/merchant-backoffice-ui/src/scss/main.scss @@ -94,7 +94,7 @@ input[type="checkbox"]:indeterminate+.check { } .right-sticky { - position: sticky; + // position: sticky; right: 0px; background-color: $white; }