소스 검색

fix: don't show whitespace when no options are selected (#2493)

Richard Shiue 2 년 전
부모
커밋
99ad9dcaff
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_day.dart

+ 3 - 0
frontend/appflowy_flutter/lib/plugins/database_view/calendar/presentation/calendar_day.dart

@@ -161,6 +161,9 @@ class CalendarDayCard extends StatelessWidget {
     });
 
     renderHook.addSelectOptionHook((selectedOptions, cardData, _) {
+      if (selectedOptions.isEmpty) {
+        return const SizedBox.shrink();
+      }
       final children = selectedOptions.map(
         (option) {
           return SelectOptionTag.fromOption(