Skip to content

Commit

Permalink
Fix wrong HTML self closing tags (#8232)
Browse files Browse the repository at this point in the history
  • Loading branch information
josegar74 authored Jul 1, 2024
1 parent f0debae commit e22bce7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
name="start"
/>
<span class="input-group-addon">
<icon class="fa fa-fw fa-chevron-right" />
<icon class="fa fa-fw fa-chevron-right"></icon>
</span>
<input
type="text"
Expand All @@ -30,14 +30,14 @@
data-ng-click="reset()"
title="{{'reset' | translate}}"
>
<icon class="fa fa-fw fa-times" />
<icon class="fa fa-fw fa-times"></icon>
</button>
<button
class="btn btn-default"
data-ng-click="filter()"
title="{{'apply' | translate}}"
>
<icon class="fa fa-fw fa-filter" />
<icon class="fa fa-fw fa-filter"></icon>
</button>
</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<b>Related Terms:</b>
<ul ng-repeat="r in related">
<li>
<span skos-label="r" lang="{{language}}" ng-click="click(r)" />
<span skos-label="r" lang="{{language}}" ng-click="click(r)"></span>
</li>
</ul>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ <h3 data-translate="">UserAdmin</h3>
data-gn-saved-selections=""
data-ng-if="userSelected.id > 0"
data-gn-saved-selections-panel="userSelected"
/>
></div>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div
class="gn-md-actions-btn pull-right btn-group md-actions"
data-gn-md-actions-menu="md"
/>
></div>
<a
class="btn btn-primary gn-md-edit-btn"
data-ng-show="user.canEditRecord(md)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<td>{{attribute.definition}}</td>
</tr>
<tr data-ng-if="attribute.values.length > 0">
<td colspan="3" class="gn-noborder-top gn-nopadding-top gn-nopadding-bottom" />
<td colspan="3" class="gn-noborder-top gn-nopadding-top gn-nopadding-bottom"></td>
</tr>
<tr data-ng-repeat-end data-ng-if="attribute.values.length > 0">
<td colspan="3" class="gn-noborder-top">
Expand Down

0 comments on commit e22bce7

Please sign in to comment.