mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-11-03 11:34:17 +00:00
fix: checklist cell style for checklist cells (#3538)
This commit is contained in:
parent
d36a846425
commit
c7e3ed805a
@ -249,8 +249,9 @@ class _PropertyCellState extends State<PropertyCell> {
|
|||||||
cellPadding: const EdgeInsets.symmetric(horizontal: 8, vertical: 5),
|
cellPadding: const EdgeInsets.symmetric(horizontal: 8, vertical: 5),
|
||||||
);
|
);
|
||||||
case FieldType.Checklist:
|
case FieldType.Checklist:
|
||||||
return SelectOptionCellStyle(
|
return ChecklistCellStyle(
|
||||||
placeholder: LocaleKeys.grid_row_textPlaceholder.tr(),
|
placeholder: LocaleKeys.grid_row_textPlaceholder.tr(),
|
||||||
|
cellPadding: const EdgeInsets.symmetric(horizontal: 8, vertical: 5),
|
||||||
);
|
);
|
||||||
case FieldType.Number:
|
case FieldType.Number:
|
||||||
return GridNumberCellStyle(
|
return GridNumberCellStyle(
|
||||||
@ -265,7 +266,6 @@ class _PropertyCellState extends State<PropertyCell> {
|
|||||||
placeholder: LocaleKeys.grid_row_textPlaceholder.tr(),
|
placeholder: LocaleKeys.grid_row_textPlaceholder.tr(),
|
||||||
cellPadding: const EdgeInsets.symmetric(horizontal: 8, vertical: 5),
|
cellPadding: const EdgeInsets.symmetric(horizontal: 8, vertical: 5),
|
||||||
);
|
);
|
||||||
|
|
||||||
case FieldType.URL:
|
case FieldType.URL:
|
||||||
return GridURLCellStyle(
|
return GridURLCellStyle(
|
||||||
placeholder: LocaleKeys.grid_row_textPlaceholder.tr(),
|
placeholder: LocaleKeys.grid_row_textPlaceholder.tr(),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user