Skip to content

Commit b37d5fc

Browse files
committed
fix: Fix type references with graph evaluation
1 parent 227e582 commit b37d5fc

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/PropertyShapeDocument.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -509,9 +509,8 @@ export class PropertyShapeDocument extends PropertyDocumentMixin(LitElement) {
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 refs = this._computeReferences(amf);
513+
return this._computeReferenceType(refs, id);
515514
}
516515

517516
_navigateType() {

0 commit comments

Comments
 (0)