File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/charts/react-charts/stories/src/SankeyChart Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -162,9 +162,9 @@ export const SankeyChartInbox: React.FunctionComponent<{}> = (): JSXElement => {
162
162
< div >
163
163
< div style = { { display : 'flex' } } >
164
164
< label > change Width:</ label >
165
- < input type = "range" value = { width } min = { 400 } max = { 1600 } onChange = { _onWidthChange } />
165
+ < input type = "range" id = "changeWidth_Inbox" value = { width } min = { 400 } max = { 1600 } onChange = { _onWidthChange } />
166
166
< label > change Height:</ label >
167
- < input type = "range" value = { height } min = { 312 } max = { 400 } onChange = { _onHeightChange } />
167
+ < input type = "range" id = "changeHeight_Inbox" value = { height } min = { 312 } max = { 400 } onChange = { _onHeightChange } />
168
168
</ div >
169
169
< div style = { rootStyle } >
170
170
< SankeyChart
Original file line number Diff line number Diff line change @@ -374,9 +374,9 @@ export const SankeyChartRebalance: React.FunctionComponent<{}> = (): JSXElement
374
374
onChange = { _onDataSourceChange }
375
375
/>
376
376
< label > change Width:</ label >
377
- < input type = "range" value = { width } min = { 400 } max = { 1600 } onChange = { _onWidthChange } />
377
+ < input type = "range" id = "changeWidth_Rebalance" value = { width } min = { 400 } max = { 1600 } onChange = { _onWidthChange } />
378
378
< label > change Height:</ label >
379
- < input type = "range" value = { height } min = { 312 } max = { 400 } onChange = { _onHeightChange } />
379
+ < input type = "range" id = "changeHeight_Rebalance" value = { height } min = { 312 } max = { 400 } onChange = { _onHeightChange } />
380
380
</ div >
381
381
< div style = { rootStyle } >
382
382
< SankeyChart
You can’t perform that action at this time.
0 commit comments