@operato/board 1.4.48 → 1.4.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@operato/board",
3
- "version": "1.4.48",
3
+ "version": "1.4.50",
4
4
  "description": "Webcomponent for board following open-wc recommendations",
5
5
  "author": "heartyoh",
6
6
  "main": "dist/src/index.js",
@@ -148,5 +148,5 @@
148
148
  "prettier --write"
149
149
  ]
150
150
  },
151
- "gitHead": "98c601e3a5a8bd67ad66f64746cdeff4d762d747"
151
+ "gitHead": "fafd040b94cba363dd96359543fd221cb7d27d64"
152
152
  }
@@ -193,14 +193,13 @@ export class DataBindingMapper extends LitElement {
193
193
  }
194
194
 
195
195
  findComponentIds() {
196
- return (
196
+ this._componentIds =
197
197
  (this.scene &&
198
198
  this.scene.ids.map(i => {
199
199
  const id = i.key
200
200
  return { value: `#${id}`, description: this.scene!.findById(id)?.get('type') }
201
201
  })) ||
202
202
  []
203
- )
204
203
  }
205
204
 
206
205
  render() {