diff --git a/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/App.vue b/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/App.vue index fba5a2781..480b882dc 100644 --- a/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/App.vue +++ b/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/App.vue @@ -19,7 +19,7 @@ export default { Requestor }, computed: mapState([ - 'accompanying_course' + 'accompanyingCourse' ]) }; diff --git a/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/AccompanyingCourse.vue b/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/AccompanyingCourse.vue index 4a5ad0ab1..be3014ddb 100644 --- a/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/AccompanyingCourse.vue +++ b/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/AccompanyingCourse.vue @@ -3,15 +3,15 @@

{{ $t('course.title') }}

{{ $t('course.id') }}
-
{{ accompanying_course.id }}
+
{{ accompanyingCourse.id }}
{{ $t('course.opening_date') }}
-
{{ $d(accompanying_course.openingDate.datetime, 'short') }}
+
{{ $d(accompanyingCourse.openingDate.datetime, 'short') }}
{{ $t('course.closing_date') }}
-
{{ $d(accompanying_course.closingDate.datetime, 'short') }}
+
{{ $d(accompanyingCourse.closingDate.datetime, 'short') }}
{{ $t('course.remark') }}
-
{{ accompanying_course.remark }}
+
{{ accompanyingCourse.remark }}
{{ $t('course.closing_motive') }}
-
{{ accompanying_course.closing_motive }}
+
{{ accompanyingCourse.closing_motive }}
@@ -20,8 +20,8 @@ export default { name: 'AccompanyingCourse', computed: { - accompanying_course() { - return this.$store.state.accompanying_course + accompanyingCourse() { + return this.$store.state.accompanyingCourse } } } diff --git a/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/PersonsAssociated.vue b/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/PersonsAssociated.vue index f330acde6..631534fcb 100644 --- a/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/PersonsAssociated.vue +++ b/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/PersonsAssociated.vue @@ -45,8 +45,8 @@ export default { AddPersons }, computed: mapState({ - participations: state => state.accompanying_course.participations, - counter: state => state.accompanying_course.participations.length + participations: state => state.accompanyingCourse.participations, + counter: state => state.accompanyingCourse.participations.length }), methods: { removeParticipation(item) { diff --git a/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/Requestor.vue b/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/Requestor.vue index 58a7c8ffd..e481fa91d 100644 --- a/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/Requestor.vue +++ b/src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/Requestor.vue @@ -1,8 +1,8 @@