Skip to content

Commit

Permalink
fix(modal): helpMessage doesn't work
Browse files Browse the repository at this point in the history
修复`helpMessage`属性不起作用的问题
  • Loading branch information
mynetfan committed Aug 10, 2021
1 parent 2052eb5 commit 953bfc6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- 修复 selection-change 事件在取消勾选时未能正确触发的问题
- 修复浅色主题下的全屏状态背景颜色不正确的问题
- **Qrcode** 修复二维码组件在创建时未能及时绘制的问题
- **BasicModal** 修复`helpMessage`属性不起作用的问题

## 2.7.0(2021-08-03)

Expand Down
4 changes: 2 additions & 2 deletions src/components/Modal/src/BasicModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => {
Expand Down

0 comments on commit 953bfc6

Please sign in to comment.