Skip to content

Commit

Permalink
Fixed user list filter bug
Browse files Browse the repository at this point in the history
  • Loading branch information
rskrzypczak committed Jan 18, 2022
1 parent cf78549 commit 03f1688
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/version.php
@@ -1,7 +1,7 @@
<?php

return [
'appVersion' => '6.3.41',
'appVersion' => '6.3.42',
'patchVersion' => '2022.01.17',
'lib_roundcube' => '0.2.10',
];
4 changes: 3 additions & 1 deletion public_html/layouts/basic/modules/Vtiger/resources/List.js
Expand Up @@ -2120,7 +2120,9 @@ $.Class(
this.registerApproveFilterClickEvent();
this.registerDenyFilterClickEvent();
this.registerCustomFilterOptionsHoverEvent();
CustomView.registerCustomViewAdvCondEvents(this.getListViewContainer());
if (typeof CustomView !== 'undefined') {
CustomView.registerCustomViewAdvCondEvents(this.getListViewContainer());
}
this.registerEmailFieldClickEvent();
this.registerPhoneFieldClickEvent();
this.registerMassActionsBtnEvents();
Expand Down

0 comments on commit 03f1688

Please sign in to comment.