Skip to content

Commit

Permalink
Merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderWatzinger committed Jun 22, 2023
2 parents d937263 + 02ec4b6 commit 80c7e68
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion install/upgrade/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ then run the database upgrade script, then restart Apache:
sudo python3 install/upgrade/database_upgrade.py
sudo service apache2 restart

### 7.14.0 to 7.14.1
### 7.14.x to 7.14.2
A code base update (e.g. with git pull) and a webserver restart is sufficient.

### 7.13.x to 7.14.0
Expand Down
2 changes: 2 additions & 0 deletions openatlas/forms/base_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,8 @@ def get_place_info_for_insert(self) -> None:
if current_user.settings['module_map_overlay'] \
and self.origin.class_.view == 'place':
self.place_info['overlay'] = Overlay.get_by_object(self.origin)
else:
self.place_info['gis_data'] = Gis.get_all()

def get_place_info_for_update(self) -> None:
super().get_place_info_for_update()
Expand Down
3 changes: 3 additions & 0 deletions openatlas/views/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ def index_changelog() -> str:

versions = {
'7.15.0': ['TBA', {}],
'7.14.2': ['2023-06-22', {
'fix': {
'2034': 'At place insert the map is not shown'}}],
'7.14.1': ['2023-06-19', {
'fix': {
'2027': 'Missing checkboxes for input tables'}}],
Expand Down

0 comments on commit 80c7e68

Please sign in to comment.