Skip to content

Commit 77dbdb2

Browse files
committed
/series/{add,info}: Remove unused "field-label" CSS-class.
Should be in 5fbc18b and 7f54e0d commits. No functional changes.
1 parent 157c14a commit 77dbdb2

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

src/main/webapp/WEB-INF/views/series/add.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -248,10 +248,8 @@ <h3 th:text="${#strings.capitalize(add_series)}">
248248
<div class="form-group form-group-sm"
249249
th:classappend="${#fields.hasErrors('imageUrl') or #fields.hasErrors('downloadedImage') ? 'has-error' : ''}"
250250
sec:authorize="hasAuthority('DOWNLOAD_IMAGE')">
251-
<label for="image-url" class="control-label col-sm-3">
252-
<span class="field-label" th:text="#{t_image_url}">
253-
Image URL
254-
</span>
251+
<label for="image-url" class="control-label col-sm-3" th:text="#{t_image_url}">
252+
Image URL
255253
</label>
256254
<div class="col-sm-5">
257255
<input type="url" id="image-url" class="form-control" th:field="*{imageUrl}" />

src/main/webapp/WEB-INF/views/series/info.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,8 @@
117117
<div class="form-group form-group-sm"
118118
th:classappend="${#fields.hasErrors('imageUrl') or #fields.hasErrors('downloadedImage') ? 'has-error' : ''}"
119119
sec:authorize="hasAuthority('DOWNLOAD_IMAGE')">
120-
<label for="image-url" class="control-label col-sm-3">
121-
<span class="field-label" th:text="#{t_image_url}">
122-
Image URL
123-
</span>
120+
<label for="image-url" class="control-label col-sm-3" th:text="#{t_image_url}">
121+
Image URL
124122
</label>
125123
<div class="col-sm-9">
126124
<input type="url" id="image-url" class="form-control" th:field="*{imageUrl}" />

0 commit comments

Comments
 (0)