Skip to content

Commit

Permalink
FIX-2210 Fix bug creating new rig and trajectory
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasbruvik committed Jan 22, 2024
1 parent 64a4a26 commit 73b79d2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,20 +57,20 @@ const RigsContextMenu = (props: RigsContextMenuProps): React.ReactElement => {
wellboreUid: wellbore.uid,
wellboreName: wellbore.name,
airGap: null,
approvals: "",
approvals: null,
commonData: null,
classRig: "",
dTimEndOp: "",
dTimStartOp: "",
emailAddress: "",
faxNumber: "",
manufacturer: "",
nameContact: "",
owner: "",
classRig: null,
dTimEndOp: null,
dTimStartOp: null,
emailAddress: null,
faxNumber: null,
manufacturer: null,
nameContact: null,
owner: null,
ratingDrillDepth: null,
ratingWaterDepth: null,
registration: "",
telNumber: "",
registration: null,
telNumber: null,
typeRig: "unknown",
yearEntService: null
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ const TrajectoriesContextMenu = (
wellName: wellbore.wellName,
wellboreUid: wellbore.uid,
wellboreName: wellbore.name,
serviceCompany: "",
aziRef: "",
dTimTrajEnd: "",
dTimTrajStart: "",
serviceCompany: null,
aziRef: null,
dTimTrajEnd: null,
dTimTrajStart: null,
mdMax: null,
mdMin: null,
trajectoryStations: [],
Expand Down

0 comments on commit 73b79d2

Please sign in to comment.