Browse Source

chore: show url cell editor when tap on edit button

appflowy 2 years ago
parent
commit
5da8144456

+ 4 - 1
frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/url_cell/url_cell.dart

@@ -72,7 +72,10 @@ class _GridURLCellState extends State<GridURLCell> {
 
           return CellEnterRegion(
             child: Align(alignment: Alignment.centerLeft, child: richText),
-            expander: _EditCellIndicator(onTap: () {}),
+            expander: _EditCellIndicator(onTap: () {
+              final cellContext = widget.cellContextBuilder.build() as GridURLCellContext;
+              URLCellEditor.show(context, cellContext);
+            }),
           );
         },
       ),