Skip to content

Commit

Permalink
Minor improvements to group tree
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenthoms committed Jun 14, 2024
1 parent 57afd20 commit 9deb918
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 11 deletions.
15 changes: 15 additions & 0 deletions frontend/src/modules/FlowNetwork/preview.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import { ModuleRegistry } from "@framework/ModuleRegistry";
import { preview } from "./preview";
import { Interface, State } from "./settingsToViewInterface";

export const MODULE_NAME = "GroupTree";
export const MODULE_NAME = "FlowNetwork";

const description = "Visualizes dated group trees over time.";

ModuleRegistry.registerModule<State, Interface>({
moduleName: MODULE_NAME,
defaultTitle: "Group Tree",
defaultTitle: "Flow Network",
category: ModuleCategory.MAIN,
devState: ModuleDevState.DEV,
devState: ModuleDevState.PROD,
dataTagIds: [ModuleDataTagId.GROUP_TREE, ModuleDataTagId.SUMMARY],
preview,
description,
Expand Down
File renamed without changes.
File renamed without changes.
6 changes: 0 additions & 6 deletions frontend/src/modules/GroupTree/preview.svg

This file was deleted.

3 changes: 1 addition & 2 deletions frontend/src/modules/registerAllModules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { isDevMode } from "@lib/utils/devMode";

import "./DistributionPlot/registerModule";
import "./Grid3D/registerModule";
// import "./Grid3DIntersection/registerModule";
import "./FlowNetwork/registerModule";
// import "./Grid3DVTK/registerModule";
import "./InplaceVolumetrics/registerModule";
import "./Map/registerModule";
Expand All @@ -17,7 +17,6 @@ import "./StructuralUncertaintyIntersection/registerModule";
import "./SubsurfaceMap/registerModule";
import "./TornadoChart/registerModule";
import "./WellCompletions/registerModule";
import "./GroupTree/registerModule";

if (isDevMode()) {
await import("./MyModule/registerModule");
Expand Down

0 comments on commit 9deb918

Please sign in to comment.