limit new space name length to 32

This commit is contained in:
Kelrap 2024-05-17 15:43:36 -04:00 committed by GitHub
parent c03ca24efe
commit f84e92d9d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -95,6 +95,9 @@ class NewSpaceView extends StatelessWidget {
const SizedBox(width: 16),
Expanded(
child: TextField(
// #Pangea
maxLength: 32,
// Pangea#
controller: controller.nameController,
autocorrect: false,
readOnly: controller.loading,