Skip to content

Commit ee57189

Browse files
committed
Don't show Continue/Back if the concept has been completed
1 parent eb9258d commit ee57189

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

app/components/concept/index.hbs

+12-10
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,18 @@
2323
/>
2424
{{else if (eq block.type "click_to_continue")}}
2525
{{#if (eq blockGroup.index this.currentBlockGroupIndex)}}
26-
<Concept::ContinueOrStepBack
27-
{{! @glint-expect-error: buttonTextForDisplay not typecast yet }}
28-
@continueButtonText={{block.buttonTextForDisplay}}
29-
@onContinueButtonClick={{this.handleContinueButtonClick}}
30-
@onStepBackButtonClick={{this.handleStepBackButtonClick}}
31-
@shouldHighlightKeyboardShortcuts={{true}}
32-
@shouldShowContinueButton={{true}}
33-
@shouldShowStepBackButton={{not-eq this.currentBlockGroupIndex 0}}
34-
class="mb-6"
35-
/>
26+
{{#unless this.hasFinished}}
27+
<Concept::ContinueOrStepBack
28+
{{! @glint-expect-error: buttonTextForDisplay not typecast yet }}
29+
@continueButtonText={{block.buttonTextForDisplay}}
30+
@onContinueButtonClick={{this.handleContinueButtonClick}}
31+
@onStepBackButtonClick={{this.handleStepBackButtonClick}}
32+
@shouldHighlightKeyboardShortcuts={{true}}
33+
@shouldShowContinueButton={{true}}
34+
@shouldShowStepBackButton={{not-eq this.currentBlockGroupIndex 0}}
35+
class="mb-6"
36+
/>
37+
{{/unless}}
3638
{{/if}}
3739
{{else}}
3840
<div class="mb-6">

0 commit comments

Comments
 (0)