keene2

Results 8 issues of keene2

redux state is global, the state of multiple page instances will affect each other globally. How to solve this problem

https://github.com/tradingview/lightweight-charts/blob/2bb415447cb3c4479a36e0c568e9a2a8f0c10439/website/tutorials/how_to/legend-3line.js#L215 export const getLastBar = (series) => { const lastIndex = series.dataByIndex(Math.Infinity, -1); return series.dataByIndex(lastIndex); }; i change the "series.dataByIndex(Math.Infinity, -1) " "-1" to "1" still not working **Lightweight Charts™...

**Lightweight Charts™ Version:** ^4.1.3,Chrome **Steps/code to reproduce:** Setting addCandlestickSeries and addHistogramSeries at the same time will only show HistogramSeries, not CandlestickSeries. Remove addHistogramSeries() to see the CandlestickSeries ```js function ChartComponent({...

I'm encountering an issue where if I switch symbols through 'setSymbol' in the following order - `tokenA` -> `setSymbol(tokenB)` -> `setSymbol(tokenA)`, the `getBars` method doesn't get called when switching back...

正常列表通过监听 scroll 可以实现 onLoadMore,但换成虚拟列表就不行了 ... const tableBody = document.querySelector(".g-table-body"); console.log("tableBody: ", tableBody); if (tableBody) { const scrollListener = (e: any) => { if (tableBody.scrollTop === 0) { onTop?.(e); } if...

Sometimes it's updated, sometimes it's not updated, I don't understand。 Is it because swap can't cache html files? How to configure

bug