File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -499,19 +499,19 @@ export class PropertyShapeDocument extends PropertyDocumentMixin(LitElement) {
499499 dElm [ 0 ] ,
500500 this . ns . aml . vocabularies . docSourceMaps . element
501501 ) ;
502- this . _targetTypeId = id ;
503502 const type = this . _getType ( amf , id ) ;
504503 if ( ! type ) {
505504 return ;
506505 }
507506
507+ this . _targetTypeId = id ;
508508 this . _targetTypeName = this . _getValue ( type , this . ns . w3 . shacl . name ) ;
509509 }
510510
511511 _getType ( amf , id ) {
512- const dcs = this . _computeDeclares ( amf ) ;
513- let refs ; // this._computeReferences(amf);
514- return this . _computeType ( dcs , refs , id ) ;
512+ const declares = this . _computeDeclares ( amf ) ;
513+ const refs = this . _computeReferences ( amf ) ;
514+ return this . _computeType ( declares , refs , id ) ;
515515 }
516516
517517 _navigateType ( ) {
You can’t perform that action at this time.
0 commit comments