From 5799b9fa265526ffdbc693adc4b0a9fcbe6b6e18 Mon Sep 17 00:00:00 2001 From: Muhsin Keloth Date: Wed, 13 Oct 2021 18:58:30 +0530 Subject: [PATCH] chore: Fix the prop warning issue in contact merge modal (#3211) --- .../modules/contact/components/ContactDropdownItem.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/javascript/dashboard/modules/contact/components/ContactDropdownItem.vue b/app/javascript/dashboard/modules/contact/components/ContactDropdownItem.vue index c4467c75f..ecee39509 100644 --- a/app/javascript/dashboard/modules/contact/components/ContactDropdownItem.vue +++ b/app/javascript/dashboard/modules/contact/components/ContactDropdownItem.vue @@ -47,8 +47,8 @@ export default { default: '', }, identifier: { - type: String, - default: '', + type: [String, Number], + required: true, }, }, };