Skip to content

Commit

Permalink
Merge Load boreholes independently of borehole table
Browse files Browse the repository at this point in the history
Resolves #224
  • Loading branch information
MiraGeowerkstatt authored Dec 15, 2022
2 parents 15c8ee7 + f750ffe commit cee1129
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
- Fix bug where filtering by `identifier` led to bugs in bulk edit.
- Fix bug where points with spatial reference system LV03 were not correctly displayed on detail map.
- Fix bug where groundwater radio buttons were not displayed.
- Correctly display number of boreholes, independently of map appearance.
- Disable possibility to draw and move point in detail map when borehole is not locked.
- Fix layout of comments in publication workflow.
- Immediately update tickboxes in admin user role UI.
Expand Down
6 changes: 6 additions & 0 deletions src/client/src/pages/settings/dataLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { Button, Input } from "semantic-ui-react";
import {
loadDomains,
loadCantons,
loadBoreholes,
loadSettings,
loadUser,
setAuthentication,
Expand Down Expand Up @@ -65,6 +66,7 @@ class DataLoader extends React.Component {
this.props.loadSettings();
this.props.loadDomains();
this.props.loadCantons();
this.props.loadBoreholes();
}
}

Expand Down Expand Up @@ -284,6 +286,7 @@ DataLoader.propTypes = {
i18n: PropTypes.object,
loadCantons: PropTypes.func,
loadDomains: PropTypes.func,
loadBoreholes: PropTypes.func,
loadSettings: PropTypes.func,
loadUser: PropTypes.func,
setAuthentication: PropTypes.func,
Expand All @@ -305,6 +308,9 @@ const mapDispatchToProps = dispatch => {
loadCantons: () => {
dispatch(loadCantons());
},
loadBoreholes: () => {
dispatch(loadBoreholes());
},
loadSettings: () => {
dispatch(loadSettings());
},
Expand Down

0 comments on commit cee1129

Please sign in to comment.