diff --git a/wax-prosemirror-services/src/BottomInfoService/CounterInfoService/components/EditorInfoTool.js b/wax-prosemirror-services/src/BottomInfoService/CounterInfoService/components/EditorInfoTool.js index 6ef18f0c9a3497d12c5186493b2dd678231b05f1..90cec8635bef58d9180bfefc0c1e1db9bf132790 100644 --- a/wax-prosemirror-services/src/BottomInfoService/CounterInfoService/components/EditorInfoTool.js +++ b/wax-prosemirror-services/src/BottomInfoService/CounterInfoService/components/EditorInfoTool.js @@ -86,7 +86,10 @@ const Counter = styled.div` `; const EditorInfoTool = ({ view: { state }, item }) => { - const { activeView } = useContext(WaxContext); + const { + activeView, + pmViews: { main }, + } = useContext(WaxContext); const { t, i18n } = useTranslation(); const ref = useRef(); const [currentWordCount, setCurrentWordCount] = useState(0); @@ -102,9 +105,9 @@ const EditorInfoTool = ({ view: { state }, item }) => { }, [activeView.state.selection]); const infoDropDownOptions = () => { - const docText = activeView.state.doc.textBetween( + const docText = main.state.doc.textBetween( 0, - activeView.state.doc.content.size, + main.state.doc.content.size, undefined, ' ', );