use camel case instead of snake case for edit creation field

This commit is contained in:
Moriz Wahl 2022-07-25 14:00:26 +02:00
parent d06d7c30cd
commit ae6fdd51e9
3 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ const propsData = {
}, },
}, },
{ key: 'moderator', label: 'moderator' }, { key: 'moderator', label: 'moderator' },
{ key: 'edit_creation', label: 'edit' }, { key: 'editCreation', label: 'edit' },
{ key: 'confirm', label: 'save' }, { key: 'confirm', label: 'save' },
], ],
toggleDetails: false, toggleDetails: false,

View File

@ -11,7 +11,7 @@
<b-icon icon="x" variant="light"></b-icon> <b-icon icon="x" variant="light"></b-icon>
</b-button> </b-button>
</template> </template>
<template #cell(edit_creation)="row"> <template #cell(editCreation)="row">
<b-button variant="info" size="md" @click="rowToggleDetails(row, 0)" class="mr-2"> <b-button variant="info" size="md" @click="rowToggleDetails(row, 0)" class="mr-2">
<b-icon :icon="row.detailsShowing ? 'x' : 'pencil-square'" aria-label="Help"></b-icon> <b-icon :icon="row.detailsShowing ? 'x' : 'pencil-square'" aria-label="Help"></b-icon>
</b-button> </b-button>

View File

@ -114,7 +114,7 @@ export default {
}, },
}, },
{ key: 'moderator', label: this.$t('moderator') }, { key: 'moderator', label: this.$t('moderator') },
{ key: 'edit_creation', label: this.$t('edit') }, { key: 'editCreation', label: this.$t('edit') },
{ key: 'confirm', label: this.$t('save') }, { key: 'confirm', label: this.$t('save') },
] ]
}, },