Skip to content

Commit

Permalink
[OPIK-242] Show 'string' type icon for custom columns (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
andriidudar authored Oct 18, 2024
1 parent 5612279 commit 9cad157
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ const ExperimentItemsTab: React.FunctionComponent<ExperimentItemsTabProps> = ({
retVal.push({
id,
label,
type: COLUMN_TYPE.dictionary,
type: COLUMN_TYPE.string,
accessorFn: (row) => get(row, ["data", label], ""),
cell: AutodetectCell as never,
} as ColumnData<ExperimentsCompare>);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const DatasetItemsPage = () => {
retVal.push({
id,
label,
type: COLUMN_TYPE.dictionary,
type: COLUMN_TYPE.string,
accessorFn: (row) => get(row, ["data", label], ""),
cell: AutodetectCell as never,
} as ColumnData<DatasetItem>);
Expand Down

0 comments on commit 9cad157

Please sign in to comment.