- Correction of behaviour where boolean fields were not properly initialised

- Ensure that primary and financial contact fields are properly saved
This commit is contained in:
Josako
2025-11-25 13:15:11 +01:00
parent 3815399a7e
commit 20fb2eee70
5 changed files with 33 additions and 16 deletions

View File

@@ -165,8 +165,8 @@ class EditEveAIAgentForm(BaseEditComponentForm):
class EditEveAITaskForm(BaseEditComponentForm):
task_description = StringField('Task Description', validators=[Optional()])
expected_outcome = StringField('Expected Outcome', validators=[Optional()])
task_description = TextAreaField('Task Description', validators=[Optional()])
expected_outcome = TextAreaField('Expected Outcome', validators=[Optional()])
class EditEveAIToolForm(BaseEditComponentForm):