Ant icon不能显示
LzEditor active={true} importContent={this.state.htmlContent} cbReceiver={this.receiveHtml} lang="zh"
ant-design 的icon 不显示
能提供一下显示效果抓图吗?
图标字体加载出错,显示不了图标
I'm having the same issue. I just added the package and plopped a component in my code. So I'm guessing I missed a configuration. @jiangfb did you ever get icons to load? Did you need to import a less file maybe?
"antd": "^2.13.8", "react-lz-editor": "^0.11.6", also using meteor 1.6 (not webpack)
import LzEditor from 'react-lz-editor';
const TextEditor = () => {
return (
<LzEditor active={true} lang="en" />
)
}

seems to be trying to get the icons by a url relative the current relative my app is on?

@acomito I got the same error when load icons .I have used the another component :'react-draft-wysiwyg' to instead of this one.react-lz-editor is pretty but not enough stable.
这个还没解决??
还解决吗?
Hi everyone,
I just added a !important into .anticon:before css display, because antd is replacing this rule with display:none
Edited file in system.css: \node_modules\react-lz-editor\global\supports\resources
.anticon:before {
display: block !important;
font-family: "anticon" !important;
}