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:
parent
4616ddc8ab
commit
21a66bf17c
1 changed files with 4 additions and 4 deletions
|
@ -137,19 +137,19 @@
|
|||
<li>
|
||||
<label class="required" for="title">Title: </label>
|
||||
[% 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>
|
||||
[% ELSE %]
|
||||
<input type="text" name="title" required="required" />
|
||||
<input id="title" type="text" name="title" required="required" />
|
||||
<span class="required">Required</span>
|
||||
[% END %]
|
||||
</li>
|
||||
<li>
|
||||
<label for="description">Description: </label>
|
||||
[% 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 %]
|
||||
<input type="text" size="50" name="description" />
|
||||
<input id="description" type="text" size="50" name="description" />
|
||||
[% END %]
|
||||
</li>
|
||||
</ol>
|
||||
|
|
Loading…
Reference in a new issue