Skip to content

Commit

Permalink
Bugfix VolumetricAnalysis - tornados hidden if both dynamic and sta…
Browse files Browse the repository at this point in the history
…tic sources (#996)

* bugfix tornados not appering if both dynamic and static sources
  • Loading branch information
tnatt authored Mar 30, 2022
1 parent c5825b0 commit c72a9e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#988](https://github.com/equinor/webviz-subsurface/pull/988) - `ParameterAnalysis` and `PropertyStatistics` - Switched to the VectorSelector component, and other various improvements.

### Fixed
- [#996](https://github.com/equinor/webviz-subsurface/pull/996) - `VolumetricAnalysis` - Fixed issue with the `Tornadoplot` tab not shown if volumes from both dynamic and static sources were included.
- [#985](https://github.com/equinor/webviz-subsurface/pull/985) - `WellLogViewer` - Updated data format to latest version. Requires no changes in input data.

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def main_view(
),
)
)
if volumemodel.sensrun and volumemodel.volume_type != "mixed":
if volumemodel.sensrun:
tabs.append(
wcc.Tab(
label="Tornadoplots",
Expand Down

0 comments on commit c72a9e2

Please sign in to comment.