Added copy and delete buttons
This commit is contained in:
@@ -2516,12 +2516,17 @@ const AppCreator = (props) => {
|
||||
}
|
||||
|
||||
if (e.target.value.length > 29) {
|
||||
alert.error("Choose a shorter name.")
|
||||
alert.error("Choose a shorter name (max 29).")
|
||||
return
|
||||
}
|
||||
|
||||
//e.target.value.trim()
|
||||
|
||||
setName(e.target.value)
|
||||
}}
|
||||
onBlur={e => {
|
||||
setName(e.target.value.trim())
|
||||
}}
|
||||
color="primary"
|
||||
InputProps={{
|
||||
style:{
|
||||
|
||||
Reference in New Issue
Block a user