Skip to content

Commit

Permalink
increased max chat / space name length
Browse files Browse the repository at this point in the history
  • Loading branch information
ggurdin committed May 27, 2024
1 parent aaeb72c commit a72197c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/pages/new_group/new_group_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class NewGroupView extends StatelessWidget {
Expanded(
child: TextField(
// #Pangea
maxLength: 32,
maxLength: 64,
// Pangea#
controller: controller.nameController,
autocorrect: false,
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/new_space/new_space_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class NewSpaceView extends StatelessWidget {
Expanded(
child: TextField(
// #Pangea
maxLength: 32,
maxLength: 64,
// Pangea#
controller: controller.nameController,
autocorrect: false,
Expand Down
2 changes: 1 addition & 1 deletion lib/pangea/utils/set_class_name.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void setClassDisplayname(BuildContext context, String? roomId) async {
: L10n.of(context)!.changeTheNameOfTheChat,
),
content: TextField(
maxLength: 32,
maxLength: 64,
controller: textFieldController,
),
actions: [
Expand Down

0 comments on commit a72197c

Please sign in to comment.