diff options
| -rw-r--r-- | CHANGES.md | 7 | ||||
| -rw-r--r-- | ishtar_common/forms_common.py | 2 | ||||
| -rw-r--r-- | ishtar_common/version.py | 4 | 
3 files changed, 10 insertions, 3 deletions
| diff --git a/CHANGES.md b/CHANGES.md index d90a515ab..326bc5812 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,13 @@ date: 2022-07-18  Ishtar changelog  ================ +v4.0.9 - 2022-07-21 +------------------- + +### Bug fix ### + +- Import creation: fix importer type filter +  v4.0.8 - 2022-07-18  ------------------- diff --git a/ishtar_common/forms_common.py b/ishtar_common/forms_common.py index e6afc4504..2ec6822b8 100644 --- a/ishtar_common/forms_common.py +++ b/ishtar_common/forms_common.py @@ -164,7 +164,7 @@ class NewItemForm(forms.Form):  class BaseImportForm(IshtarForm, forms.ModelForm):      error_css_class = "error"      required_css_class = "required" -    importer_type = "gis" +    importer_type = "tab"      imported_images_link = forms.URLField(          label=_("Associated images (web link to a zip file)"), required=False      ) diff --git a/ishtar_common/version.py b/ishtar_common/version.py index f083607dc..d7c8dd304 100644 --- a/ishtar_common/version.py +++ b/ishtar_common/version.py @@ -1,5 +1,5 @@ -# 4.0.8 -VERSION = (4, 0, 8) +# 4.0.9 +VERSION = (4, 0, 9)  def get_version(): | 
