7f430bba8f
Onboarding will now display your progress through the chosen tutorials
13 lines
487 B
Handlebars
13 lines
487 B
Handlebars
<div class="progress-container">
|
|
{{#each progressBar as |bar|}}
|
|
<div class="feature-progress-container">
|
|
<span class="progress-bar">
|
|
<span class="feature-progress" style={{bar.style}} {{! template-lint-disable }}></span>
|
|
</span>
|
|
{{#if bar.showIcon}}
|
|
<ICon class="feature-check {{if bar.completed 'completed-check' 'incomplete-check'}}" @glyph="check-circle-fill" @size="16" @excludeIconClass={{true}}/>
|
|
{{/if}}
|
|
</div>
|
|
{{/each}}
|
|
</div>
|