Skip to content
Snippets Groups Projects
Commit 42ff323c authored by D4rkHeart's avatar D4rkHeart
Browse files

[Fix] Fix the 'action' column.

parent ddeada2d
No related branches found
No related tags found
1 merge request!24[Feat] Open application in a new tab
......@@ -38,7 +38,7 @@
@contextmenu.prevent="handleContextMenu(props.item.applicant_id, $event)"
:class="{ isNew: isNew(props.item.fk_status, props.item.applicant_application_date) && !$store.getters['moduleUser/userIsResponsible'] }"
>
<td>
<td v-if="$store.getters['moduleUser/userIsResponsible']">
<v-checkbox v-model="props.selected" hide-details color="primary"></v-checkbox>
</td>
<td>
......@@ -312,6 +312,7 @@ export default {
return filterInfo;
},
formatArray(value) {
return Array.isArray(value) && value.length > 0 ? value.join(', ') : value || '';
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment