提交 953bfc6f 作者: 无木

fix(modal): `helpMessage` doesn't work

修复`helpMessage`属性不起作用的问题
上级 2052eb5a
......@@ -7,6 +7,7 @@
- 修复 selection-change 事件在取消勾选时未能正确触发的问题
- 修复浅色主题下的全屏状态背景颜色不正确的问题
- **Qrcode** 修复二维码组件在创建时未能及时绘制的问题
- **BasicModal** 修复`helpMessage`属性不起作用的问题
## 2.7.0(2021-08-03)
......
......@@ -140,9 +140,9 @@
wrapClassName: unref(getWrapClassName),
};
if (unref(fullScreenRef)) {
return omit(attr, 'height');
return omit(attr, ['height', 'title']);
}
return attr;
return omit(attr, 'title');
});
const getWrapperHeight = computed(() => {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论