mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
very small change
This commit is contained in:
parent
3fb4cca2ea
commit
bfdd288078
1 changed files with 3 additions and 3 deletions
|
|
@ -121,9 +121,9 @@ function EditAppName({ appId, appName = '', onNameChanged }) {
|
|||
<InfoOrErrorBox
|
||||
active={isError || isEditing}
|
||||
message={
|
||||
errorMessage || warningText || name.length >= 50
|
||||
? 'Maximum length has been reached'
|
||||
: 'App name should be unique and max 50 characters'
|
||||
errorMessage ||
|
||||
warningText ||
|
||||
(name.length >= 50 ? 'Maximum length has been reached' : 'App name should be unique and max 50 characters')
|
||||
}
|
||||
isWarning={warningText || name.length >= 50}
|
||||
isError={isError}
|
||||
|
|
|
|||
Loading…
Reference in a new issue