File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed
Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 1212
1313[ ![ NPM version] [ npm-image ]] [ npm-url ] [ ![ NPM downloads] [ download-image ]] [ download-url ]
1414
15- [ ![ Discussions ] [ discussions-image ]] [ discussions-url ] [ ![ ] [ issues-helper-image ]] [ issues-helper-url ] [ ![ Issues need help] [ help-wanted-image ]] [ help-wanted-url ]
15+ [ ![ ] [ issues-helper-image ]] [ issues-helper-url ] [ ![ Issues need help] [ help-wanted-image ]] [ help-wanted-url ]
1616
1717[ npm-image ] : https://img.shields.io/npm/v/@alilc/lowcode-engine.svg?style=flat-square
1818[ npm-url ] : http://npmjs.org/package/@alilc/lowcode-engine
2121[ download-url ] : https://npmjs.org/package/@alilc/lowcode-engine
2222[ help-wanted-image ] : https://flat.badgen.net/github/label-issues/alibaba/lowcode-engine/help%20wanted/open
2323[ help-wanted-url ] : https://github.com/alibaba/lowcode-engine/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22
24- [ discussions-image ] : https://img.shields.io/badge/discussions-on%20github-blue?style=flat-square
25- [ discussions-url ] : https://github.com/alibaba/lowcode-engine/discussions
2624
2725[ issues-helper-image ] : https://img.shields.io/badge/using-issues--helper-orange?style=flat-square
2826[ issues-helper-url ] : https://github.com/actions-cool/issues-helper
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ An enterprise-class low-code technology stack with scale-out design
1212
1313[ ![ NPM version] [ npm-image ]] [ npm-url ] [ ![ NPM downloads] [ download-image ]] [ download-url ]
1414
15- [ ![ Discussions ] [ discussions-image ]] [ discussions-url ] [ ![ ] [ issues-helper-image ]] [ issues-helper-url ] [ ![ Issues need help] [ help-wanted-image ]] [ help-wanted-url ]
15+ [ ![ ] [ issues-helper-image ]] [ issues-helper-url ] [ ![ Issues need help] [ help-wanted-image ]] [ help-wanted-url ]
1616
1717[ npm-image ] : https://img.shields.io/npm/v/@alilc/lowcode-engine.svg?style=flat-square
1818[ npm-url ] : http://npmjs.org/package/@alilc/lowcode-engine
@@ -21,8 +21,6 @@ An enterprise-class low-code technology stack with scale-out design
2121[ download-url ] : https://npmjs.org/package/@alilc/lowcode-engine
2222[ help-wanted-image ] : https://flat.badgen.net/github/label-issues/alibaba/lowcode-engine/help%20wanted/open
2323[ help-wanted-url ] : https://github.com/alibaba/lowcode-engine/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22
24- [ discussions-image ] : https://img.shields.io/badge/discussions-on%20github-blue?style=flat-square
25- [ discussions-url ] : https://github.com/alibaba/lowcode-engine/discussions
2624
2725[ issues-helper-image ] : https://img.shields.io/badge/using-issues--helper-orange?style=flat-square
2826[ issues-helper-url ] : https://github.com/actions-cool/issues-helper
Original file line number Diff line number Diff line change @@ -105,16 +105,14 @@ export default class Material {
105105 return isComponentMeta ( obj ) ;
106106 }
107107
108-
109-
110108 /**
111109 * 获取所有已注册的物料元数据
112110 * @returns
113111 */
114112 getComponentMetasMap ( ) {
115113 const map = new Map < string , ComponentMeta > ( ) ;
116114 const originalMap = this [ designerSymbol ] . getComponentMetasMap ( ) ;
117- for ( let componentName in originalMap . keys ( ) ) {
115+ for ( let componentName of originalMap . keys ( ) ) {
118116 map . set ( componentName , this . getComponentMeta ( componentName ) ! ) ;
119117 }
120118 return map ;
You can’t perform that action at this time.
0 commit comments