add lastname and filtering to historicticket

This commit is contained in:
Luca Haid
2024-03-12 19:24:34 +01:00
parent 62ee336788
commit 0d60d93ab1
2 changed files with 12 additions and 1 deletions
+4
View File
@@ -44,6 +44,10 @@ include(realpath(dirname(__FILE__) . "/../../$mfLayoutPackage") . "/header.php")
</div>
</template>
<template v-slot:first_name="{ row }">
{{ row.first_name }} {{ row.last_name }}
</template>
<template v-slot:ticket_number="{ row }">
<a href="#" @click="clickTicketNumber(row.ticket_number)">{{ row.ticket_number }}</a>
</template>