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 d985035 commit 7a41138Copy full SHA for 7a41138
src/dialog/tooltip/tooltip.directive.ts
@@ -52,9 +52,7 @@ export class TooltipDirective extends DialogDirective {
52
@Input("tooltip-type") tooltipType: "warning" | "error" | "" = "";
53
54
@HostBinding("attr.aria-describedby") get descriptorId(): string {
55
- if (this.expanded) {
56
- return this.dialogConfig.compID;
57
- }
+ return this.expanded ? this.dialogConfig.compID : null;
58
}
59
60
/**
0 commit comments