Skip to content

Commit b371b76

Browse files
committed
fix: fireTrigger -> triggered
1 parent eaa3396 commit b371b76

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/pods/components/contest/contest-content-list/template.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@task={{fetchContentsTask}}
33
@loadingComponent={{component 'loading-component'}}
44
@autoFire="true"
5-
@fireTrigger={{taskTrigger}} as |contents isError|>
5+
@triggered={{taskTrigger}} as |contents isError|>
66
{{#if isError}}
77
You are not authorized to view problems of this contest.
88
{{else}}

app/pods/components/contest/contest-list/template.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<WAsync @task={{fetchContestsTask}}
22
@loadingComponent={{component 'loading-component' }}
3-
@fireTrigger={{taskTrigger}}
3+
@triggered={{taskTrigger}}
44
@autoFire="true"
55
as |typed_contests isError|>
66
<div class="row">

app/pods/components/quiz-view/template.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="img-card p-5 hb-tab-nav">
22
<WAsync
33
@task={{fetchQuestionTask}}
4-
@fireTrigger={{taskTrigger}}
4+
@triggered={{taskTrigger}}
55
@autoFire="true"
66
@loadingComponent="loading-component" as |question|>
77
<QuestionContainer

0 commit comments

Comments
 (0)