Skip to content

Commit

Permalink
fix: cannot select org in newDeal dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Dec 11, 2023
1 parent bd51426 commit 0dcd5b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/NewDeal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const allFields = [
type: 'link',
placeholder: 'Organization',
doctype: 'CRM Organization',
change: (data) => (newDeal.organization = data),
change: (data) => (props.newDeal.organization = data),
create: (value, close) => {
_organization.value.organization_name = value
showOrganizationModal.value = true
Expand Down

0 comments on commit 0dcd5b9

Please sign in to comment.