Skip to content

Commit

Permalink
fix(board): 修复无法修改删除话题或评论的问题
Browse files Browse the repository at this point in the history
忘了只要用户名对就行了
  • Loading branch information
he0119 committed Nov 14, 2021
1 parent bdea6ce commit e8fb962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/user/model/user.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class User extends Equatable {
Map<String, dynamic> toJson() => _$UserToJson(this);

@override
List<Object?> get props => [username, email, avatarUrl];
List<Object?> get props => [username];

@override
String toString() => username;
Expand Down

0 comments on commit e8fb962

Please sign in to comment.