fix: default name when create a new field

This commit is contained in:
appflowy 2022-09-07 20:32:30 +08:00
parent 3d2bfcc7c1
commit c5963bc765

View File

@ -35,7 +35,7 @@ class FieldEditorBloc extends Bloc<FieldEditorEvent, FieldEditorState> {
emit(state.copyWith(name: name));
},
didReceiveFieldChanged: (FieldPB field) {
emit(state.copyWith(field: Some(field)));
emit(state.copyWith(field: Some(field), name: field.name));
},
);
},