Skip to content

Commit

Permalink
Merge branch 'main' into refactor/set-coordinates
Browse files Browse the repository at this point in the history
  • Loading branch information
mheggelund authored Feb 21, 2024
2 parents f54d9e9 + ecd0c6e commit 31e044c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions compose-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ services:
pepm-ui:
image: pepm-ui:dev
build:
target: development
target: local
context: .
volumes:
- ./src:/code/src
env_file:
- .env.development.local
- .env.local
ports:
- 3000:3000
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ export const Table = styled.div`
padding-bottom: ${spacings.MEDIUM};
> div {
overflow-y: hidden;
> table {
min-width: 1150px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export const VariogramResultTable = ({
<Styled.Table>
<EdsDataGrid
enableSorting
enableColumnFiltering
enablePagination
emptyMessage="No results to show"
columnResizeMode="onChange"
Expand All @@ -104,7 +105,7 @@ export const VariogramResultTable = ({
},
{
accessorKey: 'modelArea',
header: 'Archel Filter',
header: 'Model Area',
id: 'modelArea',
},
{
Expand All @@ -128,6 +129,7 @@ export const VariogramResultTable = ({
accessorKey: 'quality',
header: 'Quality factor',
id: 'quality',
enableColumnFilter: false,
},
]}
/>
Expand Down

0 comments on commit 31e044c

Please sign in to comment.