commit c70b5fe655c4728977416e86a05750ca77baf398 parent 600526ec63e680019f948bc45d19d276525b4f6c Author: Sebastian <sebasjm@taler-systems.com> Date: Wed, 8 Apr 2026 16:24:07 -0300 fix #11341 Diffstat:
3 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/packages/merchant-backoffice-ui/src/components/Tooltip.tsx b/packages/merchant-backoffice-ui/src/components/Tooltip.tsx @@ -76,7 +76,7 @@ export function Tooltip({ return ( <span ref={iRef} - class="has-tooltip-custom " + class="has-tooltip-custom" onTouchStart={() => {}} data-tooltip={text} > 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 @@ -171,7 +171,7 @@ function Table({ <i18n.Translate>Load first page</i18n.Translate> </button> )} - <table class="table is-fullwidth is-striped is-hoverable is-fullwidth"> + <table class="table is-striped is-hoverable is-fullwidth"> <thead> <tr> <th> diff --git a/packages/merchant-backoffice-ui/src/scss/main.scss b/packages/merchant-backoffice-ui/src/scss/main.scss @@ -212,4 +212,12 @@ input.mfa-code[type=number] { to { --angle: 360deg; } +} +/** + * This is crazy stuff. + * Removing this will make all tables with button on the right + * to show a horizontal side bar even when there is space for it + */ +div.buttons.is-right{ + margin-right: 18px; } \ No newline at end of file