Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vtigercrm
Manage
Activity
Members
Labels
Plan
Issues
516
Issue boards
Milestones
Wiki
Code
Merge requests
83
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Welcome to Vtiger Community. To gain access for account, please contact [ community @ vtiger.com ]
Show more breadcrumbs
vtiger
vtigercrm
Merge requests
!1134
Fixes
#1552
: Bug in Contacts_Detail_Js.checkForPortalUser()
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fixes
#1552
: Bug in Contacts_Detail_Js.checkForPortalUser()
yogeshwar/vtigercrm:1552
into
master
Overview
0
Commits
2
Changes
1
Merged
yogeshwar
requested to merge
yogeshwar/vtigercrm:1552
into
master
11 months ago
Overview
0
Commits
2
Changes
1
Expand
👍
0
👎
0
Merge request reports
Compare
master
version 3
148478eb
11 months ago
version 2
148478eb
11 months ago
version 1
052df74c
11 months ago
master (base)
and
latest version
latest version
148478eb
2 commits,
11 months ago
version 3
148478eb
2 commits,
11 months ago
version 2
148478eb
5 commits,
11 months ago
version 1
052df74c
4 commits,
11 months ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
layouts/v7/modules/Contacts/resources/Detail.js
+
2
−
2
Options
@@ -31,7 +31,7 @@ Vtiger_Detail_Js("Contacts_Detail_Js", {}, {
return
false
;
}
var
primaryEmailValue
=
primaryEmailField
[
"
0
"
]
.
data
(
"
value
"
);
var
primaryEmailValue
=
primaryEmailField
.
data
(
"
value
"
);
if
(
primaryEmailValue
==
""
)
{
app
.
helper
.
showErrorNotification
({
message
:
app
.
vtranslate
(
'
JS_PLEASE_ENTER_PRIMARY_EMAIL_VALUE_TO_ENABLE_PORTAL_USER
'
)});
return
false
;
@@ -47,4 +47,4 @@ Vtiger_Detail_Js("Contacts_Detail_Js", {}, {
this
.
_super
();
this
.
registerAjaxPreSaveEvents
(
form
);
}
})
\ No newline at end of file
})
Loading