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,
|
skipImages: false,
|
||||||
skipBlacklists: false,
|
skipBlacklists: false,
|
||||||
skipSSL: false,
|
skipSSL: false,
|
||||||
withModsec: false,
|
with_modsec: false,
|
||||||
ips: "",
|
ips: "",
|
||||||
noSSH: false,
|
no_ssh: false,
|
||||||
enableFTP: false,
|
enable_ftp: false,
|
||||||
enableMail: false,
|
enable_mail: false,
|
||||||
postInstall: "",
|
post_install: "",
|
||||||
screenshots: "local",
|
screenshots: "local",
|
||||||
debug: false,
|
debug: false,
|
||||||
repair: false,
|
repair: false,
|
||||||
@ -93,7 +93,7 @@ const Install: React.FC = () => {
|
|||||||
{/* Input fields for advanced install settings */}
|
{/* Input fields for advanced install settings */}
|
||||||
{Object.entries(installOptions).map(([key, value]) => (
|
{Object.entries(installOptions).map(([key, value]) => (
|
||||||
<div key={key}>
|
<div key={key}>
|
||||||
<label htmlFor={key}>{key.replace(/([A-Z])/g, ' $1').toUpperCase()}:</label>
|
<label htmlFor={key}>{key.replace(/_/g, ' ').toUpperCase()}:</label>
|
||||||
{key === "version" && (
|
{key === "version" && (
|
||||||
<select
|
<select
|
||||||
id={key}
|
id={key}
|
||||||
|
Loading…
Reference in New Issue
Block a user