We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5b9494d + b0dd369 commit e7ab435Copy full SHA for e7ab435
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "react-visual-modeling",
3
- "version": "1.1.2",
+ "version": "1.1.3",
4
"description": "一个基于React的数据可视化建模的DAG图,适用于UML,数据库建模,数据仓库建设等业务",
5
"main": "dist/index.js",
6
"pack": "pack/index.js",
src/canvas/right-menu.js
@@ -10,6 +10,9 @@ let _genTipDom = (menuData, data) => {
10
if (item.onClick) {
11
menuItem.on('click', (e) => {
12
item.onClick(item.key, data);
13
+ if (item.closable) {
14
+ Tips.closeMenu();
15
+ }
16
});
17
}
18
dom.append(menuItem);
0 commit comments