提交 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 is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册