diff --git a/frontend/app_flowy/lib/plugins/grid/application/field/field_editor_bloc.dart b/frontend/app_flowy/lib/plugins/grid/application/field/field_editor_bloc.dart index aa40e98e92..d7b024d67d 100644 --- a/frontend/app_flowy/lib/plugins/grid/application/field/field_editor_bloc.dart +++ b/frontend/app_flowy/lib/plugins/grid/application/field/field_editor_bloc.dart @@ -35,7 +35,7 @@ class FieldEditorBloc extends Bloc { emit(state.copyWith(name: name)); }, didReceiveFieldChanged: (FieldPB field) { - emit(state.copyWith(field: Some(field))); + emit(state.copyWith(field: Some(field), name: field.name)); }, ); },