fix(modal): helpMessage doesn't work

修复`helpMessage`属性不起作用的问题
This commit is contained in:
无木
2021-08-10 23:02:59 +08:00
parent 2052eb5a65
commit 953bfc6f1a
2 changed files with 3 additions and 2 deletions

View File

@@ -7,6 +7,7 @@
- 修复 selection-change 事件在取消勾选时未能正确触发的问题 - 修复 selection-change 事件在取消勾选时未能正确触发的问题
- 修复浅色主题下的全屏状态背景颜色不正确的问题 - 修复浅色主题下的全屏状态背景颜色不正确的问题
- **Qrcode** 修复二维码组件在创建时未能及时绘制的问题 - **Qrcode** 修复二维码组件在创建时未能及时绘制的问题
- **BasicModal** 修复`helpMessage`属性不起作用的问题
## 2.7.0(2021-08-03) ## 2.7.0(2021-08-03)

View File

@@ -140,9 +140,9 @@
wrapClassName: unref(getWrapClassName), wrapClassName: unref(getWrapClassName),
}; };
if (unref(fullScreenRef)) { if (unref(fullScreenRef)) {
return omit(attr, 'height'); return omit(attr, ['height', 'title']);
} }
return attr; return omit(attr, 'title');
}); });
const getWrapperHeight = computed(() => { const getWrapperHeight = computed(() => {