fix(modal): `helpMessage` doesn't work
修复`helpMessage`属性不起作用的问题
This commit is contained in:
parent
2052eb5a65
commit
953bfc6f1a
|
|
@ -7,6 +7,7 @@
|
||||||
- 修复 selection-change 事件在取消勾选时未能正确触发的问题
|
- 修复 selection-change 事件在取消勾选时未能正确触发的问题
|
||||||
- 修复浅色主题下的全屏状态背景颜色不正确的问题
|
- 修复浅色主题下的全屏状态背景颜色不正确的问题
|
||||||
- **Qrcode** 修复二维码组件在创建时未能及时绘制的问题
|
- **Qrcode** 修复二维码组件在创建时未能及时绘制的问题
|
||||||
|
- **BasicModal** 修复`helpMessage`属性不起作用的问题
|
||||||
|
|
||||||
## 2.7.0(2021-08-03)
|
## 2.7.0(2021-08-03)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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(() => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue