You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Criteria comparison is too strict (1 === true => false)
Description
I want a widget to show only for authenticated users then Criterias is supposed to be the solution:
I create my widget and specify the following criteria request_user equal 1.
Criteria comparison is too strict (1 === true => false)
Description
I want a widget to show only for authenticated users then Criterias is supposed to be the solution:
I create my widget and specify the following criteria
request_user equal 1
.But the content isn't displayed.
After digging, the following line : dd5633f#diff-a3d5dd0acce1865308353da827fd2dadR62 is problematic because the current comparison is
1 === true
.Resolution Ideas
Don't use true and false and prefer a unique equal operand.
Check #897
Related to
The text was updated successfully, but these errors were encountered: