File tree 2 files changed +3
-2
lines changed
src/custom-element-manifest-viewer
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " cemnama" ,
3
3
"description" : " a Custom Element Manifest Viewer component developed in web components" ,
4
4
"author" : " Amirhossein Alibakhshi" ,
5
- "version" : " 0.0.0-alpha-2 " ,
5
+ "version" : " 0.0.0-alpha-3 " ,
6
6
"repository" : {
7
7
"type" : " git" ,
8
8
"url" : " https://github.com/amir78729/custom-element-manifest-viewer.git"
Original file line number Diff line number Diff line change @@ -180,10 +180,11 @@ export class CustomElementManifestViewer extends LitElement {
180
180
? removeBackticks ( property . type . text )
181
181
: 'string' ,
182
182
description : property ?. description ,
183
+ // @ts -expect-error
183
184
defaultValue :
184
185
( property ?. default &&
185
186
removeBackticks ( removeQuotes ( property . default ) ) ) ||
186
- this . propertyKnobs [ property . name ] ,
187
+ this . propertyKnobs ?. [ property . name ] ,
187
188
// @ts -expect-error
188
189
onChange : ( e : Event ) => {
189
190
const input = e . target as HTMLInputElement ;
You can’t perform that action at this time.
0 commit comments