Skip to content

Commit 898f270

Browse files
committed
Merge remote-tracking branch 'origin/v8/8.17' into v9/dev
2 parents af35757 + e1333fe commit 898f270

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License (MIT) #
22

3-
Copyright (c) 2013-present Umbraco
3+
Copyright (c) 2005-present Umbraco
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

src/Umbraco.Web.UI.Client/src/views/components/tabs/umb-tabs-nav.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<ul role="tablist" class="umb-tabs-nav">
22
<li class="umb-tab" ng-repeat="tab in vm.tabs | limitTo: vm.maxTabs" data-element="tab-{{tab.alias}}" ng-class="{'umb-tab--active': tab.active, 'umb-tab--error': valTab_tabHasError}" val-tab>
3-
<button class="btn-reset umb-tab-button" ng-click="vm.clickTab($event, tab)" role="tab" aria-selected="{tab.active}" type="button">
3+
<button class="btn-reset umb-tab-button" ng-click="vm.clickTab($event, tab)" role="tab" aria-selected="{{tab.active}}" type="button">
44
{{ tab.label }}
55
<div ng-show="valTab_tabHasError && !tab.active" class="badge">!</div>
66
</button>
@@ -23,7 +23,7 @@
2323
ng-class="{'dropdown-menu--active': tab.active}"
2424
ng-click="vm.clickTab($event, tab)"
2525
role="tab"
26-
aria-selected="{tab.active}" >
26+
aria-selected="{{tab.active}}" >
2727
{{ tab.label }}
2828
<div ng-show="valTab_tabHasError && !tab.active" class="badge">!</div>
2929
</button>

0 commit comments

Comments
 (0)