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 a58ee8a commit 43b89d8Copy full SHA for 43b89d8
src/progress-indicator/progress-indicator.component.ts
@@ -48,7 +48,7 @@ import { Step } from "./progress-indicator-step.interface";
48
(click)="stepSelected.emit({ step: step, index: i })">
49
{{step.text}}
50
</p>
51
- <div class="bx--progress-text">
+ <div class="bx--progress-text" *ngIf="!step.tooltip || step.optionalText">
52
<p class="bx--progress-label" *ngIf="!step.tooltip" (click)="stepSelected.emit({ step: step, index: i })">{{step.text}}</p>
53
<p *ngIf="step.optionalText" class="bx--progress-optional">{{step.optionalText}}</p>
54
</div>
0 commit comments