Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/pages/ocotillo/thing/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const WellList: React.FC = () => {
meta: {
params: {
include_contacts: true,
...(search ? { name_contains: search } : {}),
...(search ? { query: search } : {}),
},
},
pagination: { pageSize: 50 },
Expand Down Expand Up @@ -265,7 +265,8 @@ export const WellList: React.FC = () => {
{
field: 'well_driller_name',
headerName: WellListColumnLabels.driller,
description: 'Drilling company name when it was recorded for this well.',
description:
'Drilling company name when it was recorded for this well.',
type: 'string',
minWidth: 150,
flex: 1,
Expand Down
Loading