feat: Script Generator Phase 1 — backend models, engine, API, and AD templates #105

Merged
chihlasm merged 78 commits from feat/script-generator into main 2026-03-15 00:19:00 +00:00
Showing only changes of commit 844b792bc2 - Show all commits

View File

@@ -52,7 +52,6 @@ export function ScriptParameterField({ param, value, error, disabled }: Props) {
} else if (param.type === 'password') {
errorRenderedByComponent = true
input = (
<div className="flex flex-col gap-1">
<div className="relative">
<Input
id={id}
@@ -73,7 +72,6 @@ export function ScriptParameterField({ param, value, error, disabled }: Props) {
{showPassword ? <EyeOff size={14} /> : <Eye size={14} />}
</button>
</div>
</div>
)
} else if (param.type === 'textarea') {
errorRenderedByComponent = true