We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61f0b75 commit 74eed6fCopy full SHA for 74eed6f
src/tabs/tab.component.ts
@@ -60,6 +60,7 @@ import {
60
role="tabpanel"
61
*ngIf="shouldRender()"
62
class="cds--tab-content"
63
+ [id]="id"
64
[ngStyle]="{'display': active ? null : 'none'}"
65
[attr.aria-labelledby]="id + '-header'"
66
aria-live="polite">
@@ -128,10 +129,6 @@ export class Tab implements OnInit {
128
129
* Value 'selected' to be emitted after a new `Tab` is selected.
130
*/
131
@Output() selected: EventEmitter<void> = new EventEmitter<void>();
- /**
132
- * Used to set the id property on the element.
133
- */
134
- @HostBinding("attr.id") attrClass = this.id;
135
136
get cacheActive() {
137
return this._cacheActive;
0 commit comments