mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
renaming of PersonItem into ParticipationItem
This commit is contained in:
parent
21fd69488f
commit
c48586cd0e
@ -16,13 +16,13 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<person-item
|
<participation-item
|
||||||
v-for="participation in participations"
|
v-for="participation in participations"
|
||||||
v-bind:participation="participation"
|
v-bind:participation="participation"
|
||||||
v-bind:key="participation.id"
|
v-bind:key="participation.id"
|
||||||
@remove="removeParticipation"
|
@remove="removeParticipation"
|
||||||
@close="closeParticipation">
|
@close="closeParticipation">
|
||||||
</person-item>
|
</participation-item>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
@ -42,13 +42,13 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapState } from 'vuex';
|
import { mapState } from 'vuex';
|
||||||
import PersonItem from "./PersonsAssociated/PersonItem.vue"
|
import ParticipationItem from "./PersonsAssociated/ParticipationItem.vue"
|
||||||
import AddPersons from 'ChillPersonAssets/vuejs/_components/AddPersons.vue'
|
import AddPersons from 'ChillPersonAssets/vuejs/_components/AddPersons.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'PersonsAssociated',
|
name: 'PersonsAssociated',
|
||||||
components: {
|
components: {
|
||||||
PersonItem,
|
ParticipationItem,
|
||||||
AddPersons
|
AddPersons
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
import OnTheFly from 'ChillMainAssets/vuejs/_components/OnTheFly.vue';
|
import OnTheFly from 'ChillMainAssets/vuejs/_components/OnTheFly.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'PersonItem',
|
name: 'ParticipationItem',
|
||||||
components: {
|
components: {
|
||||||
OnTheFly
|
OnTheFly
|
||||||
},
|
},
|
Loading…
x
Reference in New Issue
Block a user