Browse Source

Fix wrong positioning for 0 column

Denis K 9 years ago
parent
commit
aa614b9dcf
1 changed files with 2 additions and 2 deletions
  1. 2 2
      jet/dashboard/dashboard.py

+ 2 - 2
jet/dashboard/dashboard.py

@@ -106,8 +106,8 @@ class Dashboard(object):
         i = 0
 
         for module in self.children:
-            column = module.column if module.column else i % self.columns
-            order = module.order if module.order else int(i / self.columns)
+            column = module.column if module.column is not None else i % self.columns
+            order = module.order if module.order is not None else int(i / self.columns)
 
             module_models.append(UserDashboardModule.objects.create(
                 title=module.title,