fix(settings): rename Campaign Parent Ticket label to Parent Ticket
Some checks failed
Aegis CI / lint-and-test (push) Has been cancelled

The field is the general parent (e.g. OFS-20795) under which campaigns
are created directly. 'Campaign Parent Ticket' was misleading.
Standalone Tests Parent Ticket remains separate (e.g. OFS-20798).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
kitos
2026-05-27 13:14:48 +02:00
parent eeee17d260
commit 323964ed9d

View File

@@ -1218,16 +1218,16 @@ function JiraConfigSection() {
</div> </div>
<div> <div>
<label className="mb-1 block text-xs font-medium text-cyan-400">Campaign Parent Ticket (optional)</label> <label className="mb-1 block text-xs font-medium text-cyan-400">Parent Ticket (optional)</label>
<input <input
type="text" type="text"
value={String(form.parent_ticket !== undefined ? form.parent_ticket : (cfg?.parent_ticket ?? ""))} value={String(form.parent_ticket !== undefined ? form.parent_ticket : (cfg?.parent_ticket ?? ""))}
onChange={(e) => setForm((prev) => ({ ...prev, parent_ticket: e.target.value }))} onChange={(e) => setForm((prev) => ({ ...prev, parent_ticket: e.target.value }))}
placeholder="OFS-9107" placeholder="OFS-20795"
className="w-full rounded-lg border border-gray-700 bg-gray-800 px-3 py-2 text-sm text-gray-200 placeholder-gray-600 focus:border-cyan-500 focus:outline-none" className="w-full rounded-lg border border-gray-700 bg-gray-800 px-3 py-2 text-sm text-gray-200 placeholder-gray-600 focus:border-cyan-500 focus:outline-none"
/> />
<p className="mt-1 text-xs text-gray-600"> <p className="mt-1 text-xs text-gray-600">
Campaign tickets are nested under this issue Campaigns are created directly under this issue
</p> </p>
</div> </div>