File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2030,7 +2030,6 @@ var Component = class {
20302030 ) ;
20312031 }
20322032 this . processRerender ( html , backendResponse ) ;
2033- this . hooks . triggerHook ( "render:finished" , this ) ;
20342033 this . backendRequest = null ;
20352034 thisPromiseResolve ( backendResponse ) ;
20362035 if ( this . isRequestPending ) {
@@ -2107,6 +2106,7 @@ var Component = class {
21072106 } )
21082107 ) ;
21092108 } ) ;
2109+ this . hooks . triggerHook ( "render:finished" , this ) ;
21102110 }
21112111 calculateDebounce ( debounce ) {
21122112 if ( debounce === true ) {
Original file line number Diff line number Diff line change @@ -338,8 +338,6 @@ export default class Component {
338338
339339 this . processRerender ( html , backendResponse ) ;
340340
341- this . hooks . triggerHook ( 'render:finished' , this ) ;
342-
343341 // finally resolve this promise
344342 this . backendRequest = null ;
345343 thisPromiseResolve ( backendResponse ) ;
@@ -449,6 +447,8 @@ export default class Component {
449447 } )
450448 ) ;
451449 } ) ;
450+
451+ this . hooks . triggerHook ( 'render:finished' , this ) ;
452452 }
453453
454454 private calculateDebounce ( debounce : number | boolean ) : number {
You can’t perform that action at this time.
0 commit comments