@@ -261,11 +261,11 @@ class QueryRenderChild extends MarkdownRenderChild {
261
261
// (setTimeout(, 0) seemed to work too...)
262
262
if ( ! this . containerEl . isConnected ) {
263
263
// Example reasons why we might not be "connected":
264
- // - This Tasks query block is contained with within another plugin's code block,
264
+ // - This Tasks query block is contained within another plugin's code block,
265
265
// such as a Tabs plugin. The file is closed and that plugin has not correctly
266
266
// tidied up, so we have not been deleted.
267
267
this . queryResultsRenderer . query . debug (
268
- '[render] QueryRenderChild.render() Ignoring redraw request, as code block is not connected.' ,
268
+ '[render] Ignoring redraw request, as code block is not connected.' ,
269
269
) ;
270
270
return ;
271
271
}
@@ -276,9 +276,7 @@ class QueryRenderChild extends MarkdownRenderChild {
276
276
// - We are in a note which is obscured by another note.
277
277
// - We are in a Tabs plugin, in a tab which is not at the front.
278
278
// - The user has not yet scrolled to this code block's position in the file.
279
- this . queryResultsRenderer . query . debug (
280
- '[render] QueryRenderChild.render() Ignoring redraw request, as code block is not shown.' ,
281
- ) ;
279
+ this . queryResultsRenderer . query . debug ( '[render] Ignoring redraw request, as code block is not shown.' ) ;
282
280
return ;
283
281
}
284
282
0 commit comments