fix: admin/logs: firefox was clipping "g" in the username
Massimo Melina committed
Mar 8, 2026 at 13:16 UTC
956b052c50c45157905c0d89049c33e578d9e54e
2 files changed
+2
-2
admin/src/DataTable.ts
+1
-1
@@ -68,7 +68,7 @@ export function DataTable({ columns, initialState={}, actions, actionsProps, ini
68
const { columns } = params.api.store.getSnapshot()
69
return h(Box, { maxHeight: '100%', ...col.cellInnerProps, sx: { textWrap: 'wrap', ...callable(sx as any, params) } }, // wrap if necessary, but stay within the row
70
col.renderCell ? col.renderCell(params) : params.formattedValue,
71
- col.mergeRender && h(Flex, { fontSize: 'smaller', flexWrap: 'wrap', mt: '2px', rowGap: 0, ...col.mergeRenderSx }, // wrap, normally causing overflow/hiding, if it doesn't fit
71
+ col.mergeRender && h(Flex, { fontSize: 'smaller', flexWrap: 'wrap', mt: '1px', rowGap: 0, ...col.mergeRenderSx }, // wrap, normally causing overflow/hiding, if it doesn't fit
72
...onlyTruthy(_.map(col.mergeRender, (props, other) => {
73
if (!props || columns.columnVisibilityModel[other] !== false) return null
74
const rendered = renderCell({ ...columns.lookup[other], ...props.override }, params.row)
admin/src/index.scss
+1
-1
@@ -41,7 +41,7 @@ div.MuiTreeItem-content { padding: 0; } // remove wasting horizontal padding
41
background-color: #8882;
42
}
43
.MuiDataGrid-cell {
44
- line-height: 1.1em;
44
+ line-height: 1.2em;
45
}
46
.MuiDataGrid-filterForm { flex-wrap: wrap; justify-content: space-evenly; row-gap: 1em; } // fit on mobile
47