diff --git a/src/components/DataTable/DataTable.tsx b/src/components/DataTable/DataTable.tsx index 406e78f1..0da3538e 100644 --- a/src/components/DataTable/DataTable.tsx +++ b/src/components/DataTable/DataTable.tsx @@ -203,7 +203,7 @@ const DataTable = (props: DataTableProps): ReactNode => { {headerGroup.headers.map((header) => { const sortDirection = header.column.getIsSorted(); const columnAlignment = - header.column.columnDef.meta?.align || "center"; + header.column.columnDef.meta?.align || "left"; return ( (props: DataTableProps): ReactNode => { {row.getVisibleCells().map((cell) => { const cellValue = cell.getValue(); const columnAlignment = - cell.column.columnDef.meta?.align || "center"; + cell.column.columnDef.meta?.align || "left"; let title = ""; if ( ["string", "number", "boolean"].includes( diff --git a/src/components/GridCellExpand/GridCellExpand.tsx b/src/components/GridCellExpand/GridCellExpand.tsx index ec0aac5b..f31f01b1 100644 --- a/src/components/GridCellExpand/GridCellExpand.tsx +++ b/src/components/GridCellExpand/GridCellExpand.tsx @@ -38,7 +38,7 @@ const GridCellExpand = React.memo(function GridCellExpand( onClick = () => {}, href, target = "_self", - justifyContent = "center", + justifyContent = "start", externalLinkArrow, } = props; const wrapper = React.useRef(null);