File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
packages/app-builder/src/components Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -100,14 +100,18 @@ export function CursorPaginationButtons({
100
100
const previousDisabled = ! hasPreviousPage ;
101
101
const nextDisabled = ! hasNextPage ;
102
102
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
+ ) ;
106
110
const defaultBoundaries = (
107
111
< Trans
108
112
t = { t }
109
113
i18nKey = "common:items_displayed_datetime"
110
- components = { { StartToEnd : < span style = { { fontWeight : '' } } /> } }
114
+ components = { { StartToEnd : < span /> } }
111
115
values = { {
112
116
start : startFormatted ,
113
117
end : endFormatted ,
You can’t perform that action at this time.
0 commit comments