Skip to content

Commit

Permalink
Condition corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
enricsinergia committed Dec 4, 2024
1 parent f269a80 commit 2232215
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/javascript/EmailsComposeViewModal.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@
window.event.stopImmediatePropagation();
// STIC-Custom 20241003 EPS - Warning when entire list selected
// https://github.com/SinergiaTIC/SinergiaCRM/pull/418
if($("[name='select_entire_list']").val() == 1) {
// if($("[name='select_entire_list']").val() == 1) {
if(document.MassUpdate.select_entire_list.value == 1) {
alert(SUGAR.language.get('app_strings', 'LBL_EMAIL_SENDING_ALERT_CURRENT_PAGE'));
}
// END STIC-Custom
Expand Down

0 comments on commit 2232215

Please sign in to comment.