Skip to content

Commit 4e41390

Browse files
committed
Back portted fixes from ASF
1 parent b645d24 commit 4e41390

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/array.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="schema-form-array {{form.htmlClass}}"
22
sf-field-model="sf-new-array"
33
sf-new-array>
4-
<h3 ng-show="form.title && form.notitle !== true"></h3>
4+
<label class="control-label" ng-show="showTitle()">{{ form.title }}</label>
55
<ol class="list-group" ui-sortable>
66
<li class="list-group-item {{form.fieldHtmlClass}}"
77
schema-form-array-items

src/fieldset.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<fieldset ng-disabled="form.readonly" class="schema-form-fieldset {{form.htmlClass}}">
2-
<legend ng-show="form.title && !form.notitle">{{ form.title }}</legend>
2+
<legend ng-class="{'sr-only': !showTitle() }">{{ form.title }}</legend>
33
<div class="help-block" ng-show="form.description" ng-bind-html="form.description"></div>
44
</fieldset>

0 commit comments

Comments
 (0)