Skip to content

Commit

Permalink
Fix for map bug (#2034)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderWatzinger committed Jun 22, 2023
1 parent 564eddd commit 02ec4b6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from config.database_versions import DATABASE_VERSIONS

VERSION = '7.14.1'
VERSION = '7.14.2'
DATABASE_VERSION = DATABASE_VERSIONS[0]
DEMO_MODE = False # If activated some options are disabled, login is prefilled

Expand Down
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 @@ -15,6 +15,9 @@ def index_changelog() -> str:


versions = {
'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 02ec4b6

Please sign in to comment.