From b124bae83c19603a4288de0d579f6a0b35fc9ebc Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 5 Apr 2026 20:29:56 -0700 Subject: [PATCH] fix: import echarts-wordcloud plugin in EChartsBase Without this import, the wordCloud series type is not registered with echarts, causing wordcloud charts to render blank. Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/frameworks/components/charts/EChartsBase.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/frameworks/components/charts/EChartsBase.tsx b/frontend/src/frameworks/components/charts/EChartsBase.tsx index 5613e1f..eb3cc71 100644 --- a/frontend/src/frameworks/components/charts/EChartsBase.tsx +++ b/frontend/src/frameworks/components/charts/EChartsBase.tsx @@ -2,6 +2,7 @@ import React, { useEffect, useRef } from 'react'; import * as echarts from 'echarts'; +import 'echarts-wordcloud'; import { useThemeStore } from '@/adapters/state/zustand/themeStore'; // ---------------------------------------------------------------------------