mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-11-24 22:45:15 +00:00
Feat: Add config path to website (#4005)
* Feat: Add config path to website * Handel Responsive/Mobile
This commit is contained in:
committed by
GitHub
parent
945a32dfef
commit
cf4a2c8ffe
@@ -32,6 +32,7 @@ const initialScript: Script = {
|
||||
privileged: false,
|
||||
interface_port: null,
|
||||
documentation: null,
|
||||
config_path: "",
|
||||
website: null,
|
||||
logo: null,
|
||||
description: "",
|
||||
@@ -174,6 +175,14 @@ export default function JSONGenerator() {
|
||||
onChange={(e) => updateScript("logo", e.target.value || null)}
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<Label>Config Path</Label>
|
||||
<Input
|
||||
placeholder="Path to config file"
|
||||
value={script.config_path || ""}
|
||||
onChange={(e) => updateScript("config_path", e.target.value || null)}
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<Label>
|
||||
Description <span className="text-red-500">*</span>
|
||||
|
||||
Reference in New Issue
Block a user