diff --git a/frontend/src/components/Modals/TaskModal.vue b/frontend/src/components/Modals/TaskModal.vue
index 3c4a59a7..db8fcfb6 100644
--- a/frontend/src/components/Modals/TaskModal.vue
+++ b/frontend/src/components/Modals/TaskModal.vue
@@ -44,19 +44,25 @@
- (_task.assigned_to = option.email)"
+ doctype="User"
+ @change="(option) => (_task.assigned_to = option)"
placeholder="Assignee"
>
-
+
-
+
+
+ {{ getUser(option.value).full_name }}
+
+
+
- {{ getUser(option.value).full_name }}
+
+ {{ getUser(option.value).full_name }}
+
- (newDeal[field.name] = option.email)"
- :placeholder="field.placeholder"
- >
-
-
-
-
-
-
-
@@ -85,8 +72,7 @@ import Link from '@/components/Controls/Link.vue'
import OrganizationModal from '@/components/Modals/OrganizationModal.vue'
import { usersStore } from '@/stores/users'
import { statusesStore } from '@/stores/statuses'
-import { activeAgents } from '@/utils'
-import { FormControl, Button, Dropdown, FeatherIcon } from 'frappe-ui'
+import { FormControl, Tooltip } from 'frappe-ui'
import { ref } from 'vue'
const { getUser } = usersStore()
diff --git a/frontend/src/components/NewLead.vue b/frontend/src/components/NewLead.vue
index e3e626ef..0b99f679 100644
--- a/frontend/src/components/NewLead.vue
+++ b/frontend/src/components/NewLead.vue
@@ -45,7 +45,9 @@
- {{ getUser(option.value).full_name }}
+
+ {{ getUser(option.value).full_name }}
+
@@ -70,8 +72,7 @@ import OrganizationModal from '@/components/Modals/OrganizationModal.vue'
import Link from '@/components/Controls/Link.vue'
import { usersStore } from '@/stores/users'
import { statusesStore } from '@/stores/statuses'
-import { activeAgents } from '@/utils'
-import { FormControl, Button, Dropdown, FeatherIcon } from 'frappe-ui'
+import { FormControl, Tooltip } from 'frappe-ui'
import { ref } from 'vue'
const { getUser } = usersStore()
diff --git a/frontend/src/pages/Deal.vue b/frontend/src/pages/Deal.vue
index 2b122b11..3d165402 100644
--- a/frontend/src/pages/Deal.vue
+++ b/frontend/src/pages/Deal.vue
@@ -4,20 +4,25 @@
- updateField('deal_owner', option.email)"
- placeholder="Deal owner"
+ doctype="User"
+ @change="(option) => updateField('deal_owner', option)"
+ placeholder="Deal Owner"
>
-
+
-
+
+
+ {{ getUser(option.value).full_name }}
+
+
+
- updateField('lead_owner', option.email)"
- placeholder="Lead owner"
+ doctype="User"
+ @change="(option) => updateField('lead_owner', option)"
+ placeholder="Lead Owner"
>
-
+
-
+
+
+ {{ getUser(option.value).full_name }}
+
+
+