mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-14 12:51:08 +00:00
Merge pull request #2473 from bookwyrm-social/imports-bug
Fixes bug that caused imports to be disabled unexpectedly
This commit is contained in:
commit
18d1adf24a
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ class CreateInviteForm(CustomForm):
|
|||
class SiteForm(CustomForm):
|
||||
class Meta:
|
||||
model = models.SiteSettings
|
||||
exclude = ["admin_code", "install_mode"]
|
||||
exclude = ["admin_code", "install_mode", "imports_enabled"]
|
||||
widgets = {
|
||||
"instance_short_description": forms.TextInput(
|
||||
attrs={"aria-describedby": "desc_instance_short_description"}
|
||||
|
|
Loading…
Reference in a new issue