fix
This commit is contained in:
parent
294ad64d2e
commit
7ca8abc68e
@ -157,6 +157,17 @@ const options = [
|
|||||||
class="text-no-wrap"
|
class="text-no-wrap"
|
||||||
>
|
>
|
||||||
<template #item.id="{ item }">{{ item.id }}</template>
|
<template #item.id="{ item }">{{ item.id }}</template>
|
||||||
|
<template #item.patient_name="{ item }">
|
||||||
|
<div class="d-flex flex-column ms-3">
|
||||||
|
<router-link
|
||||||
|
:to="{ name: 'admin-patient-profile', params: { id: item.patient_id } }"
|
||||||
|
class="highlighted"
|
||||||
|
>
|
||||||
|
<span class="d-block font-weight-medium text-truncate">{{ item.patient_name }}</span>
|
||||||
|
</router-link>
|
||||||
|
<small>{{ item.post }}</small>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<template #item.duration="{ item }">{{ item.duration }}</template>
|
<template #item.duration="{ item }">{{ item.duration }}</template>
|
||||||
<!-- Actions -->
|
<!-- Actions -->
|
||||||
<template #item.actions="{ item }">
|
<template #item.actions="{ item }">
|
||||||
@ -192,3 +203,10 @@ const options = [
|
|||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</template>
|
</template>
|
||||||
|
<style scoped>
|
||||||
|
.highlighted {
|
||||||
|
/* Add your desired highlighting styles here */
|
||||||
|
font-weight: bold;
|
||||||
|
color: #a169ff; /* or any other color you prefer */
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user