diff --git a/frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_cell.dart b/frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_cell.dart index 6ed04c8b04..d55825a0de 100644 --- a/frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_cell.dart +++ b/frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_cell.dart @@ -210,15 +210,17 @@ class _SelectOptionWrapState extends State { } else { final children = widget.selectOptions.map( (option) { - return SelectOptionTag.fromOption( - context: context, - option: option, + return Padding( + padding: const EdgeInsets.only(right: 4), + child: SelectOptionTag.fromOption( + context: context, + option: option, + ), ); }, ).toList(); child = Wrap( - spacing: 4, runSpacing: 2, children: children, );