فهرست منبع

Stop using now-unneeded col6 classes for panels

Thibaud Colas 2 سال پیش
والد
کامیت
9bf38d9e35
1فایلهای تغییر یافته به همراه4 افزوده شده و 4 حذف شده
  1. 4 4
      bakerydemo/base/models.py

+ 4 - 4
bakerydemo/base/models.py

@@ -64,8 +64,8 @@ class Person(
             [
                 FieldRowPanel(
                     [
-                        FieldPanel("first_name", classname="col6"),
-                        FieldPanel("last_name", classname="col6"),
+                        FieldPanel("first_name"),
+                        FieldPanel("last_name"),
                     ]
                 )
             ],
@@ -427,8 +427,8 @@ class FormPage(AbstractEmailForm):
             [
                 FieldRowPanel(
                     [
-                        FieldPanel("from_address", classname="col6"),
-                        FieldPanel("to_address", classname="col6"),
+                        FieldPanel("from_address"),
+                        FieldPanel("to_address"),
                     ]
                 ),
                 FieldPanel("subject"),