diff --git a/apps/dokploy/components/dashboard/project/add-database.tsx b/apps/dokploy/components/dashboard/project/add-database.tsx index e6b36e63..9f93aa1f 100644 --- a/apps/dokploy/components/dashboard/project/add-database.tsx +++ b/apps/dokploy/components/dashboard/project/add-database.tsx @@ -341,7 +341,7 @@ export const AddDatabase = ({ projectId, projectName }: Props) => { placeholder="Name" {...field} onChange={(e) => { - const val = e.target.value?.trim() || ""; + const val = e.target.value?.trim().toLowerCase() || ""; form.setValue("appName", `${slug}-${val}`); field.onChange(val); }}