Skip to content

Commit c30dc69

Browse files
fix error ?
1 parent 81cbaab commit c30dc69

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

packages/app-builder/src/components/PaginationButtons.tsx

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,18 @@ export function CursorPaginationButtons({
100100
const previousDisabled = !hasPreviousPage;
101101
const nextDisabled = !hasNextPage;
102102

103-
const sameSecondBoundaries = t('common:items_displayed', {
104-
time: startFormatted,
105-
});
103+
const sameSecondBoundaries = (
104+
<span>
105+
{t('common:items_displayed', {
106+
time: startFormatted,
107+
})}
108+
</span>
109+
);
106110
const defaultBoundaries = (
107111
<Trans
108112
t={t}
109113
i18nKey="common:items_displayed_datetime"
110-
components={{ StartToEnd: <span style={{ fontWeight: '' }} /> }}
114+
components={{ StartToEnd: <span /> }}
111115
values={{
112116
start: startFormatted,
113117
end: endFormatted,

0 commit comments

Comments
 (0)