diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/grid/Grid/Grid.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/grid/Grid/Grid.tsx index 611f612a69..56be883800 100644 --- a/frontend/appflowy_tauri/src/appflowy_app/components/grid/Grid/Grid.tsx +++ b/frontend/appflowy_tauri/src/appflowy_app/components/grid/Grid/Grid.tsx @@ -22,36 +22,37 @@ export const Grid = ({ viewId }: { viewId: string }) => { }; return ( - controller && - groups && ( - <> -
-
- - + <> + {controller && groups && ( + <> +
+
+ + +
+ + {/* table component view with text area for td */} +
+ + + +
+ + +
+ +
- - {/* table component view with text area for td */} -
- - - -
- - -
- - -
- {showGridRow && boardRowInfo && ( - setShowGridRow(false)} - viewId={viewId} - controller={controller} - rowInfo={boardRowInfo} - > - )} - - ) + {showGridRow && boardRowInfo && ( + setShowGridRow(false)} + viewId={viewId} + controller={controller} + rowInfo={boardRowInfo} + > + )} + + )} + ); };