File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
dash/dash-renderer/src/actions Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -623,9 +623,7 @@ function handleServerside(
623
623
}
624
624
625
625
if ( data . sideUpdate ) {
626
- setTimeout ( ( ) =>
627
- dispatch ( sideUpdate ( data . sideUpdate , payload ) )
628
- ) ; // always force side-updates
626
+ dispatch ( sideUpdate ( data . sideUpdate , payload ) ) ;
629
627
}
630
628
631
629
if ( data . progress ) {
@@ -913,6 +911,9 @@ export function executeCallback(
913
911
const outputPath = getPath ( paths , out . id ) ;
914
912
const dataPath = [ stringifyId ( out . id ) , propName ] ;
915
913
const outputValue = path ( dataPath , data ) ;
914
+ if ( outputValue === undefined ) {
915
+ return ;
916
+ }
916
917
const oldProps =
917
918
path (
918
919
outputPath . concat ( [ 'props' ] ) ,
@@ -922,6 +923,7 @@ export function executeCallback(
922
923
{ [ propName ] : outputValue } ,
923
924
oldProps
924
925
) ;
926
+
925
927
data = assocPath (
926
928
dataPath ,
927
929
newProps [ propName ] ,
You can’t perform that action at this time.
0 commit comments