Not a bug Reaction tag

kick

Well-known member
Affected version
v2.1.8 Patch 2
A reaction tag checks for value showtitle, and its value parameter is ignored
1588066959166.webp
showtitle="false"
1588067006576.webp
Unless of course you delete this value, the title will not be displayed. We will get the result we need.
1588067068373.webp
 
We're a little bit inconsistent with this as we handle it in some places but not in others but for the most part this is not totally unexpected.

You are not passing a boolean value of false to the template tag here, you are passing a string value of 'false' which is actually a truthy value because it's not an empty string.

The correct way to set this to false is to pass an actual boolean value which would be done with showtitle="{{ false }}".

There should probably be a wider project in order to make this more consistent but not dealing with this particular case as a bug right now.
 
Back
Top Bottom