From d5d0cbcabff27502d5834a16a44ad5ac341b8eff Mon Sep 17 00:00:00 2001 From: *=0=1=4=* <21157384+f35f0ef9d0e827dae86552d3899f78fc@users.noreply.github.com> Date: Wed, 22 Dec 2021 19:05:35 -0600 Subject: [PATCH] TEXTFIELD_PROPS_SERVER_WELCOME_MESSAGE.maxLength = 2500; (#401) Fixes #1595 --- web/utils/config-constants.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/utils/config-constants.tsx b/web/utils/config-constants.tsx index 48d3565ef..f97a93985 100644 --- a/web/utils/config-constants.tsx +++ b/web/utils/config-constants.tsx @@ -78,7 +78,7 @@ export const TEXTFIELD_PROPS_SERVER_SUMMARY = { export const TEXTFIELD_PROPS_SERVER_WELCOME_MESSAGE = { apiPath: API_SERVER_WELCOME_MESSAGE, configPath: 'instanceDetails', - maxLength: 500, + maxLength: 2500, placeholder: '', label: 'Welcome Message', tip: 'A system chat message sent to viewers when they first connect to chat. Leave blank to disable.',