소스 검색

fix: trigger option selection on tap down (#2915)

* fix: trigger option selection on tap down

* chore: add TODO comment

---------

Co-authored-by: Richard Shiue <[email protected]>
Vedant Pandey 1 년 전
부모
커밋
9b7ff375b2
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/select_option_cell/extension.dart

+ 2 - 1
frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/select_option_cell/extension.dart

@@ -168,7 +168,8 @@ class SelectOptionTagCell extends StatelessWidget {
             ...children,
           ],
         ),
-        onTap: () => onSelected(option),
+        // TODO(richard): find alternative solution to onTapDown
+        onTapDown: (_) => onSelected(option),
       ),
     );
   }