diff --git a/src/api/objects/InMemorySearchProvider.js b/src/api/objects/InMemorySearchProvider.js index 9168fb6efb..b16ad5f18b 100644 --- a/src/api/objects/InMemorySearchProvider.js +++ b/src/api/objects/InMemorySearchProvider.js @@ -137,7 +137,7 @@ class InMemorySearchProvider { }; modelResults.hits = await Promise.all(event.data.results.map(async (hit) => { const identifier = this.openmct.objects.parseKeyString(hit.keyString); - const domainObject = await this.openmct.objects.get(identifier.key); + const domainObject = await this.openmct.objects.get(identifier); return domainObject; }));