Added copy and delete buttons

This commit is contained in:
frikky
2021-05-12 11:54:55 +02:00
parent 05b3f3cd65
commit a39370a5fc
3 changed files with 167 additions and 31 deletions
+6 -1
View File
@@ -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:{