We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54b5bea commit f0245d7Copy full SHA for f0245d7
app/components/course-page/header/main-section.hbs
@@ -25,9 +25,9 @@
25
</div>
26
27
28
- {{! TODO: This uses if (not ...) instead of unless because ESLint seems to replace this before linting? }}
29
- {{! We already have this shown in the test runner card }}
30
- {{#if (not (and (eq @currentStep.type "CourseStageStep") (eq @currentStep @activeStep)))}}
+ {{! For complete steps, we have the "You've completed this step" banner" }}
+ {{! For in-progress steps, users shouldn't be focused on this area anyway }}
+ {{#if (not (or (eq @currentStep.status "complete") (eq @currentStep.status "in_progress")))}}
31
<CoursePage::StepProgressIndicator @step={{@currentStep}} class="mt-2 ml-0.5" />
32
{{/if}}
33
0 commit comments