Skip to content

Commit

Permalink
remove bash?
Browse files Browse the repository at this point in the history
  • Loading branch information
k-burt-uch committed Jan 17, 2025
1 parent 54d5fc7 commit b74e801
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ USER nextjs
EXPOSE 3000

# Start the application using bash
CMD ["/bin/sh", "./start.sh"]
CMD ["npm", "run", "start"]
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,7 @@ import QueryDetails from '../QueryDetails';
/**
* Component that manages a List items, which are composed of Dataset and/or Cohorts
*/
// TODO Move to config.
const columns = [
{
accessorKey: 'name',
header: 'Name',
},
{
accessorKey: 'id',
header: 'Id',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,8 @@ const SelectedItemsTable: React.FC<SelectedItemsTableProps> = ({
},
},
{
accessorKey: 'id',
header: 'Id',
size: 150,
maxSize: 250,
accessorKey: 'name',
header: 'Name',
},
{
accessorKey: 'description',
Expand All @@ -167,17 +165,23 @@ const SelectedItemsTable: React.FC<SelectedItemsTableProps> = ({
);
},
},
{
accessorKey: 'datasetId',
header: 'Dataset ID',
},
{
accessorKey: 'type',
header: 'Type',
},
{
accessorKey: 'size',
header: 'Size',
accessorKey: 'id',
header: 'Id',
size: 150,
maxSize: 250,
},
{
accessorKey: 'datasetId',
header: 'Dataset ID',
accessorKey: 'size',
header: 'Size',
},
],
[iconSize, size],
Expand Down

0 comments on commit b74e801

Please sign in to comment.