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,6 +2030,7 @@ var Component = class {
2030
2030
new URL ( liveUrl + window . location . hash , window . location . origin )
2031
2031
) ;
2032
2032
}
2033
+ this . hooks . triggerHook ( "render:finished" , this ) ;
2033
2034
this . backendRequest = null ;
2034
2035
thisPromiseResolve ( backendResponse ) ;
2035
2036
if ( this . isRequestPending ) {
@@ -2106,7 +2107,6 @@ var Component = class {
2106
2107
} )
2107
2108
) ;
2108
2109
} ) ;
2109
- this . hooks . triggerHook ( "render:finished" , this ) ;
2110
2110
}
2111
2111
calculateDebounce ( debounce ) {
2112
2112
if ( debounce === true ) {
Original file line number Diff line number Diff line change @@ -337,6 +337,8 @@ export default class Component {
337
337
) ;
338
338
}
339
339
340
+ this . hooks . triggerHook ( 'render:finished' , this ) ;
341
+
340
342
// finally resolve this promise
341
343
this . backendRequest = null ;
342
344
thisPromiseResolve ( backendResponse ) ;
@@ -446,8 +448,6 @@ export default class Component {
446
448
} )
447
449
) ;
448
450
} ) ;
449
-
450
- this . hooks . triggerHook ( 'render:finished' , this ) ;
451
451
}
452
452
453
453
private calculateDebounce ( debounce : number | boolean ) : number {
You can’t perform that action at this time.
0 commit comments