Browse Source

Update of Model.create_component method

Yann Weber 9 years ago
parent
commit
9f0599939a
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      EditorialModel/model.py

+ 2
- 1
EditorialModel/model.py View File

@@ -92,7 +92,8 @@ class Model(object):
92 92
     # @param component_type str : a component type ( component_class, component_fieldgroup, component_field or component_type )
93 93
     # @param datas dict : the options needed by the component creation
94 94
     def create_component(self, component_type, datas):
95
-        em_component = self.emclass_from_name(component_type).create(datas)
95
+        datas['uid'] = self.new_uid
96
+        em_component = self.emclass_from_name(component_type)(datas, self)
96 97
 
97 98
         self._components['uids'][em_component.uid] = em_component
98 99
         self._components[name_from_emclass(em_component.__class__)].append(em_component)

Loading…
Cancel
Save