diff --git a/CHANGELOG.md b/CHANGELOG.md index f00f97c46da82811bd7932b3148e0b7f768727c5..db2a5e5ae65270576e295dd1025e3a4afb82af2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ ### Fixed +- 修复MD编辑器在钉钉内显示异常问题 - 修复ios中时间选择器弹出文本输入框 - 修复ios富文本弹出框层级问题 - 修复ios文件上传编辑器弹框位置异常 diff --git a/src/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.scss b/src/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.scss index abe2c5d6da9f7c88c00cb4a5f20516539ab053c4..ce8da37640c755b320d764b8ebc412372a460a23 100644 --- a/src/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.scss +++ b/src/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.scss @@ -12,6 +12,10 @@ $markdown: ( .cherry { width: 100%; } + + @include when('hidden'){ + display: hidden; + } } @include b(markdown-image-popup){ diff --git a/src/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.tsx b/src/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.tsx index 6294d3571974dfdc1b8f24db3d3aeae5543857ff..ac380f42228e94aa99fd0837613357ea766d6e8a 100644 --- a/src/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.tsx +++ b/src/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.tsx @@ -362,11 +362,17 @@ const IBizMarkDown: any = defineComponent({ className={this.ns.b('dialog')} close-on-popstate={true} > -
+ {{ + default: () => { + return ( +
+ ); + }, + }} );