diff --git a/src/common/dataforms.py b/src/common/dataforms.py index ed1b199ab..edfa4030a 100644 --- a/src/common/dataforms.py +++ b/src/common/dataforms.py @@ -59,8 +59,7 @@ def Field(typ, **attrs): ''' Helper function to create a field of given type. ''' f = { 'boolean': BooleanField, - # not editable, still can have multiple lines of text - 'fixed': TextMultiField, + 'fixed': StringField, 'hidden': StringField, 'text-private': StringField, 'text-single': StringField, @@ -80,7 +79,7 @@ def ExtendField(node): typ=node.getAttr('type') f = { 'boolean': BooleanField, - 'fixed': TextMultiField, + 'fixed': StringField, 'hidden': StringField, 'text-private': StringField, 'text-single': StringField,