diff --git a/package.json b/package.json index e7136daa42..272b64409b 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "build:extension": "node build/build.js --type extension --min", "build:ssr": "node build/build.js --type ssr", "dev:fast": "node build/build-i18n.js && node build/dev-fast.js", - "dev": "npx -y concurrently -n build,server \"npm run dev:fast\" \"npx -y http-server -c-1 -s -o test\"", + "dev": "npx -y concurrently@8 -n build,server \"npm run dev:fast\" \"npx -y http-server -c-1 -s -o test\"", "prepare": "npm run build:lib && husky install", "release": "npm run build:lib && npm run build:i18n && npm run build && npm run build:esm && npm run build:extension && npm run build:ssr", "help": "node build/build.js --help", diff --git a/src/chart/heatmap/HeatmapView.ts b/src/chart/heatmap/HeatmapView.ts index f8b912a3d7..c4fd705d10 100644 --- a/src/chart/heatmap/HeatmapView.ts +++ b/src/chart/heatmap/HeatmapView.ts @@ -332,9 +332,9 @@ class HeatmapView extends ChartView { toggleHoverEmphasis(rect, focus, blurScope, emphasisDisabled); - rect.incremental = getIncrementalId(seriesModel, useIncremental); // PENDING if (useIncremental) { + rect.incremental = getIncrementalId(seriesModel, useIncremental); // Rect must use hover layer if it's incremental. rect.states.emphasis.hoverLayer = graphic.HOVER_LAYER_FOR_INCREMENTAL; }