Skip to content

Commit

Permalink
Minor fix after rebase
Browse files Browse the repository at this point in the history
- Generate api after rebase
- Fix plurar
  • Loading branch information
jorgenherje committed Sep 18, 2023
1 parent 935a41b commit 956c4e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/api/models/WellCompletionsZone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
export type WellCompletionsZone = {
name: string;
color: string;
subzones?: Array<WellCompletionsZone>;
subzones: (Array<WellCompletionsZone> | null);
};

2 changes: 1 addition & 1 deletion frontend/src/api/services/WellCompletionsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class WellCompletionsService {
public getWellCompletionsData(
caseUuid: string,
ensembleName: string,
realization?: number,
realization?: (number | null),
): CancelablePromise<WellCompletionsData> {
return this.httpRequest.request({
method: 'GET',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/modules/WellCompletions/view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const view = ({ moduleContext }: ModuleFCProps<State>) => {
{!plotData ? (
dataLoadingStatus === DataLoadingStatus.Error ? (
<div className="w-full h-full flex justify-center items-center text-red-500">
Error loading well completion data for selected Ensemble and realization
Error loading well completions data for selected Ensemble and realization
</div>
) : dataLoadingStatus === DataLoadingStatus.Loading ? (
<div className="absolute left-0 right-0 w-full h-full bg-white bg-opacity-80 flex items-center justify-center z-10">
Expand Down

0 comments on commit 956c4e1

Please sign in to comment.