Merge pull request #15697 from Budibase/BUDI-9113

Fixes validation text in custom user roles
This commit is contained in:
Mike Sealey 2025-03-07 14:57:13 +00:00 committed by GitHub
commit 291fd6f21f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@
const validateDescription = description => {
if (!description?.length) {
return "Please enter a name"
return "Please enter a description"
}
return null
}