From 820d2548b60709593764122a32001ace16742dee Mon Sep 17 00:00:00 2001 From: sahej-dev Date: Mon, 10 Oct 2022 23:08:35 +0530 Subject: [PATCH] fix: Extra spacing in multiselect cell --- .../cell/select_option_cell/select_option_cell.dart | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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, );