This commit is contained in:
FinnStutzenstein 2017-03-31 10:07:36 +02:00
parent d758159bff
commit 44ed866210
2 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,9 @@ https://openslides.org/
Version 2.1.1 (unreleased) Version 2.1.1 (unreleased)
========================== ==========================
Agenda:
- Fixed issue #3173 that the agenda item text cannot be changed.
Version 2.1 (2017-03-29) Version 2.1 (2017-03-29)
======================== ========================

View File

@ -14,5 +14,5 @@ class TopicSerializer(ModelSerializer):
def validate(self, data): def validate(self, data):
if 'text' in data: if 'text' in data:
data['text'] = validate_html(['text']) data['text'] = validate_html(data['text'])
return data return data