Skip to content

Commit 579ae40

Browse files
committed
fix: correct creation of mission statements in tutorials
1 parent e7f35e3 commit 579ae40

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/CompareProjectTutorial.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default defineComponent({
5959
},
6060
computed: {
6161
mission() {
62-
const message = this.$t('projectView.youAreLookingFor', { lookFor: this.project.lookFor })
62+
const message = this.$t('projectView.youAreLookingFor', { lookFor: this.tutorial.lookFor })
6363
return message
6464
},
6565
currentScreen() {

src/components/FindProjectTutorial.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default defineComponent({
8989
)
9090
},
9191
mission() {
92-
const message = this.$t('projectView.youAreLookingFor', { lookFor: this.project.lookFor })
92+
const message = this.$t('projectView.youAreLookingFor', { lookFor: this.tutorial.lookFor })
9393
return message
9494
},
9595
currentScreen() {

src/components/StreetProjectTutorial.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export default defineComponent({
7272
},
7373
computed: {
7474
mission() {
75-
const message = this.$t('projectView.youAreLookingFor', { lookFor: this.project.lookFor })
75+
const message = this.$t('projectView.youAreLookingFor', { lookFor: this.tutorial.lookFor })
7676
return message
7777
},
7878
currentScreen() {

0 commit comments

Comments
 (0)