File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
dash/dash-renderer/src/wrapper Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ function DashWrapper({
241
241
242
242
for ( let i = 0 ; i < childrenProps . length ; i ++ ) {
243
243
const childrenProp : string = childrenProps [ i ] ;
244
- let childNewRender = 0 ;
244
+ let childNewRender : any = 0 ;
245
245
if (
246
246
childrenProp
247
247
. split ( '.' ) [ 0 ]
@@ -250,7 +250,7 @@ function DashWrapper({
250
250
newRender . current ||
251
251
! h
252
252
) {
253
- childNewRender = Date . now ( ) ;
253
+ childNewRender = { } ;
254
254
}
255
255
const handleObject = ( obj : any , opath : DashLayoutPath ) => {
256
256
return mapObjIndexed (
@@ -462,7 +462,7 @@ function DashWrapper({
462
462
componentProps . children ,
463
463
[ 'children' ] ,
464
464
! h || newRender . current || 'children' in changedProps
465
- ? Date . now ( )
465
+ ? { }
466
466
: 0
467
467
) ;
468
468
}
You can’t perform that action at this time.
0 commit comments