Issue #3387039: Large placeholders are not processed
1 unresolved thread
Merge request reports
Activity
Filter activity
- Resolved by Nazar Velychenko
- Resolved by Nazar Velychenko
69 69 return; 70 70 } 71 71 72 // Immediately remove the replacement to prevent it being processed twice. 73 delete drupalSettings.bigPipePlaceholderIds[id]; 74 75 72 const response = mapTextContentToAjaxResponse(content); 76 73 77 74 if (response === false) { 78 75 return; 79 76 } 80 77 78 // Immediately remove the replacement to prevent it being processed twice. 79 delete drupalSettings.bigPipePlaceholderIds[id]; If we do not move it here then we will not be able to track if the chunk was not processed during characterData mutation observer triggering.
Leaving a chunk of code, just to make sure ctrl + f can work in case when the link will be invalid.
drupalSettings.bigPipePlaceholderIds[ target.parentNode.dataset.bigPipeReplacementForPlaceholderWithId ] === true
Please register or sign in to reply