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.
2 parents 219dbe8 + f9475a4 commit b2b65e6Copy full SHA for b2b65e6
src/dialog/tooltip/tooltip.directive.ts
@@ -52,12 +52,11 @@ export class TooltipDirective extends DialogDirective {
52
// tslint:disable-next-line:no-input-rename
53
@Input("tooltip-type") tooltipType: "warning" | "error" | "" = "";
54
55
+
56
@HostBinding("tabindex") tabIndex = 0;
57
58
@HostBinding("attr.aria-describedby") get descriptorId(): string {
- if (this.expanded) {
59
- return this.dialogConfig.compID;
60
- }
+ return this.expanded ? this.dialogConfig.compID : null;
61
}
62
63
/**
0 commit comments