fix defaults

This commit is contained in:
ryanwong
2024-11-15 05:28:39 -05:00
parent 8135d2f6ce
commit 5b0404eccb
2 changed files with 25 additions and 24 deletions
+1 -3
View File
@@ -84,8 +84,6 @@ export function SettingsForm() {
<option value="">Select Database Type</option>
<option value="mysql">MySQL</option>
<option value="postgresql">PostgreSQL</option>
<option value="mongodb">MongoDB</option>
<option value="sqlite">SQLite</option>
</select>
</div>
@@ -159,7 +157,7 @@ export function SettingsForm() {
<div>
<input
type="password"
type="text"
name="dbPassword"
value={settings?.dbPassword || ""}
onChange={handleChange}