File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/web-component-designer
src/elements/widgets/propertyGrid Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"description" : " A WYSIWYG designer webcomponent for html components" ,
3
3
"name" : " @node-projects/web-component-designer" ,
4
- "version" : " 0.1.281 " ,
4
+ "version" : " 0.1.282 " ,
5
5
"type" : " module" ,
6
6
"main" : " ./dist/index.js" ,
7
7
"author" : " jochen.kuehner@gmx.de" ,
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ export class PropertyGridWithHeader extends BaseCustomWebComponentLazyAppend {
155
155
public set instanceServiceContainer ( value : InstanceServiceContainer ) {
156
156
this . _instanceServiceContainer = value ;
157
157
this . _selectionChangedHandler ?. dispose ( )
158
- if ( this . instanceServiceContainer ) {
158
+ if ( this . _instanceServiceContainer ) {
159
159
this . _selectionChangedHandler = this . _instanceServiceContainer . selectionService . onSelectionChanged . on ( async e => {
160
160
this . propertyGrid . instanceServiceContainer = value ;
161
161
await sleep ( 20 ) ; // delay assignment a little bit, so onblur above could still set the value.
You can’t perform that action at this time.
0 commit comments