fix: added Liked By in columns list

This commit is contained in:
Shariq Ansari 2024-05-22 20:44:28 +05:30
parent c1a5f6b70a
commit 748beedcea
2 changed files with 2 additions and 2 deletions

View File

@ -248,6 +248,7 @@ def get_list_data(
},
{"label": "Assigned To", "type": "Text", "value": "_assign"},
{"label": "Owner", "type": "Link", "value": "owner", "options": "User"},
{"label": "Liked By", "type": "Data", "value": "_liked_by"},
]
for field in std_fields:

View File

@ -189,7 +189,6 @@
<script setup>
import NoteIcon from '@/components/Icons/NoteIcon.vue'
import MinimizeIcon from '@/components/Icons/MinimizeIcon.vue'
import DialpadIcon from '@/components/Icons/DialpadIcon.vue'
import PhoneIcon from '@/components/Icons/PhoneIcon.vue'
import CountUpTimer from '@/components/CountUpTimer.vue'
import NoteModal from '@/components/Modals/NoteModal.vue'
@ -201,7 +200,7 @@ import { Avatar, call } from 'frappe-ui'
import { onMounted, ref, watch } from 'vue'
const { getContact, getLeadContact } = contactsStore()
const { setMakeCall, setTwilioEnabled, $dialog } = globalStore()
const { setMakeCall, setTwilioEnabled } = globalStore()
let device = ''
let log = ref('Connecting...')