This commit is contained in:
Laura Klünder 2017-08-21 16:05:31 +02:00
parent 662ea578c8
commit e76963a2a6

View file

@ -73,7 +73,7 @@ class Level(SpecificLocation, models.Model):
result = super()._serialize(**kwargs) result = super()._serialize(**kwargs)
result['on_top_of'] = self.on_top_of_id result['on_top_of'] = self.on_top_of_id
result['base_altitude'] = float(str(self.base_altitude)) result['base_altitude'] = float(str(self.base_altitude))
result['default_height'] = float(str(self.default_heights)) result['default_height'] = float(str(self.default_height))
return result return result
def _render_space_ground(self, svg, space): def _render_space_ground(self, svg, space):