From ff8136407cd54019de41929c953728ee5806e47c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9=20=D0=A8=D0=B8?= =?UTF-8?q?=D0=BC=D0=B0=D0=BD=D1=81=D0=BA=D0=B8=D0=B9?= Date: Fri, 17 Nov 2023 00:23:31 +0300 Subject: [PATCH] change max lenght in modals --- Justice/Modals/CitiesModal.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Justice/Modals/CitiesModal.cs b/Justice/Modals/CitiesModal.cs index ac6e8f5..498a59e 100644 --- a/Justice/Modals/CitiesModal.cs +++ b/Justice/Modals/CitiesModal.cs @@ -16,11 +16,11 @@ namespace DiscordApp.Justice.Modals public string description { get; set; } [InputLabel("Х координата")] - [ModalTextInput("xCoordinate", TextInputStyle.Short, placeholder: "70", maxLength: 4)] + [ModalTextInput("xCoordinate", TextInputStyle.Short, placeholder: "70", maxLength: 10)] public int xCoordinate { get; set; } [InputLabel("Y координата")] - [ModalTextInput("yCoordinate", TextInputStyle.Short, placeholder: "90", maxLength: 4)] + [ModalTextInput("yCoordinate", TextInputStyle.Short, placeholder: "90", maxLength: 10)] public int yCoordinate { get; set; } }