mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
Update index.tsx
This commit is contained in:
parent
dc4c63837d
commit
b2af16cff1
@ -17,12 +17,12 @@ const Install: React.FC = () => {
|
||||
skipImages: false,
|
||||
skipBlacklists: false,
|
||||
skipSSL: false,
|
||||
withModsec: false,
|
||||
with_modsec: false,
|
||||
ips: "",
|
||||
noSSH: false,
|
||||
enableFTP: false,
|
||||
enableMail: false,
|
||||
postInstall: "",
|
||||
no_ssh: false,
|
||||
enable_ftp: false,
|
||||
enable_mail: false,
|
||||
post_install: "",
|
||||
screenshots: "local",
|
||||
debug: false,
|
||||
repair: false,
|
||||
@ -93,7 +93,7 @@ const Install: React.FC = () => {
|
||||
{/* Input fields for advanced install settings */}
|
||||
{Object.entries(installOptions).map(([key, value]) => (
|
||||
<div key={key}>
|
||||
<label htmlFor={key}>{key.replace(/([A-Z])/g, ' $1').toUpperCase()}:</label>
|
||||
<label htmlFor={key}>{key.replace(/_/g, ' ').toUpperCase()}:</label>
|
||||
{key === "version" && (
|
||||
<select
|
||||
id={key}
|
||||
|
Loading…
Reference in New Issue
Block a user