Details
-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
5.6.1
-
None
-
None
Description
The commit, which fixes MGNLUI-4310 introduced a new bug.
Instead of
this.isEnabled = function() { return getState().enabled !== false }
it should read:
this.isEnabled = function() { return **this**.getState().enabled !== false }
Furthermore, I believe, there is one additional bug:
The commit changed line 51
from
if (!jcrop || !state.isValid) {
to
if (!jcrop || !this.isEnabled()) {
I believe this should be reverted.
Checklists
Acceptance criteria