Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.2.0
-
None
Description
Workaround: place an empty comment inside the content.
The issue is here:
processReply : function(reply) {
Tapestry.loadScriptsInReply(reply, function() {
/*
- In a multi-zone update, the reply.content may be blank or
- missing.
*/
reply.content && this.show(reply.content);
In this situation the reply looks like:
{
"content": ""
}
And the empty string is falsey; it short circuits the && operator.
A check for undefined is more appropriate (this may be the case in a multi-zone update).