mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
Remove console log from appName generation in AddDatabase component
This commit is contained in:
@@ -364,7 +364,6 @@ export const AddDatabase = ({ projectId, projectName }: Props) => {
|
|||||||
onChange={(e) => {
|
onChange={(e) => {
|
||||||
const val = e.target.value?.trim() || "";
|
const val = e.target.value?.trim() || "";
|
||||||
const serviceName = slugify(val);
|
const serviceName = slugify(val);
|
||||||
console.log(serviceName);
|
|
||||||
form.setValue("appName", `${slug}-${serviceName}`);
|
form.setValue("appName", `${slug}-${serviceName}`);
|
||||||
field.onChange(val);
|
field.onChange(val);
|
||||||
}}
|
}}
|
||||||
|
|||||||
Reference in New Issue
Block a user