File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
app/viewModelBuilders/azul/anvil-cmg/common/dataDictionaryMapper Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 11import { MarkdownCell } from "@databiosphere/findable-ui/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell";
22import { Attribute } from "@databiosphere/findable-ui/lib/common/entities";
33import { ColumnDef, CellContext } from "@tanstack/react-table";
4+ import { BasicCell } from "@databiosphere/findable-ui/lib/components/Table/components/TableCell/components/BasicCell/basicCell";
45
56export const COLUMN_DEFS: ColumnDef<Attribute>[] = [
67 {
@@ -35,12 +36,17 @@ export const COLUMN_DEFS: ColumnDef<Attribute>[] = [
3536 },
3637 {
3738 accessorKey: "name",
39+ cell: (cellContext) =>
40+ BasicCell({
41+ TypographyProps: { noWrap: true },
42+ value: cellContext.getValue() as string,
43+ }),
3844 enableColumnFilter: false,
3945 header: "Name",
4046 meta: {
4147 width: {
4248 max: "1fr",
43- min: "180px ",
49+ min: "240px ",
4450 },
4551 },
4652 },
You can’t perform that action at this time.
0 commit comments