Bug 35240: Add missing IDs to input

1. Tools -> Rotating collections -> Edit collection
2. Use browser dev tools to notice that the inputs don't have matching
   IDs
3. Apply patch
4. Do step 2 again and notice IDs are no longer missing.
5. Sign off :)

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Eric Garcia 2024-06-25 17:18:13 +00:00 committed by Katrin Fischer
parent 4616ddc8ab
commit 21a66bf17c
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834

View file

@ -137,19 +137,19 @@
<li> <li>
<label class="required" for="title">Title: </label> <label class="required" for="title">Title: </label>
[% IF ( editColTitle ) %] [% IF ( editColTitle ) %]
<input type="text" name="title" value="[% editColTitle | html %]" required="required" /> <input id="title" type="text" name="title" value="[% editColTitle | html %]" required="required" />
<span class="required">Required</span> <span class="required">Required</span>
[% ELSE %] [% ELSE %]
<input type="text" name="title" required="required" /> <input id="title" type="text" name="title" required="required" />
<span class="required">Required</span> <span class="required">Required</span>
[% END %] [% END %]
</li> </li>
<li> <li>
<label for="description">Description: </label> <label for="description">Description: </label>
[% IF (editColDescription ) %] [% IF (editColDescription ) %]
<input type="text" size="50" name="description" value="[% editColDescription | html %]" /> <input id="description" type="text" size="50" name="description" value="[% editColDescription | html %]" />
[% ELSE %] [% ELSE %]
<input type="text" size="50" name="description" /> <input id="description" type="text" size="50" name="description" />
[% END %] [% END %]
</li> </li>
</ol> </ol>