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.
1 parent 4c0ae06 commit e063d9aCopy full SHA for e063d9a
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "react-visual-modeling",
3
- "version": "1.1.0",
+ "version": "1.1.1",
4
"description": "一个基于React的数据可视化建模的DAG图,适用于UML,数据库建模,数据仓库建设等业务",
5
"main": "dist/index.js",
6
"pack": "pack/index.js",
src/config.ts
@@ -39,15 +39,15 @@ export const actions = [
39
40
key: 'zoom-in',
41
icon: 'table-build-icon table-build-icon-zoom-in',
42
- title: '缩小',
+ title: '放大',
43
onClick: (canvas) => {
44
canvas.zoom(canvas._zoomData + 0.1);
45
}
46
},
47
48
key: 'zoom-out',
49
icon: 'table-build-icon table-build-icon-zoom-out',
50
- title: '放大',
+ title: '缩小',
51
52
canvas.zoom(canvas._zoomData - 0.1);
53
0 commit comments