File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
@plotly/dash-generator-test-component-typescript
dash/dash-renderer/src/wrapper Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11// Needs to export types if not in a d.ts file or if any import is present in the d.ts
22import React from 'react' ;
3- import { DashComponent } from '@dash-renderer/types/component ' ;
3+ import { DashComponent } from '@dash-renderer/types' ;
44
55
66type Nested = {
Original file line number Diff line number Diff line change 33 "jsx" : " react" ,
44 "baseUrl" : " src/ts" ,
55 "paths" : {
6+ "@dash-renderer/*" : [" ../../../../dash/dash-renderer/src/*" ]
67 },
78 "inlineSources" : true ,
89 "sourceMap" : true ,
Original file line number Diff line number Diff line change @@ -391,7 +391,7 @@ function DashWrapper({
391391
392392 if ( node !== undefined ) {
393393 if ( isArray ) {
394- for ( let j = 0 ; j < node . length ; j ++ ) {
394+ for ( let j = 0 ; j < ( node as [ ] ) . length ; j ++ ) {
395395 const aPath = concat ( [ opath ] , [ j ] ) ;
396396 props = assocPath (
397397 aPath ,
You can’t perform that action at this time.
0 commit comments