diff --git a/src/views/Compose.vue b/src/views/Compose.vue
index 1419d4f..eb7c88d 100644
--- a/src/views/Compose.vue
+++ b/src/views/Compose.vue
@@ -167,7 +167,7 @@
:errors="slotProps.data.errors"
@input="doTargetLookup(slotProps.data.target, slotProps.update)"
>
-
+
{{ targetLookup.text }}
@@ -958,6 +958,7 @@ export default {
target.meandist = _.get(data, ['semimajor_axis'], null);
target.meananom = _.get(data, ['mean_anomaly'], null);
target.dailymot = _.get(data, ['mean_daily_motion'], null);
+ this.targetLookup.text = `Found matching object: ${_.get(data, ['name'], null)}`;
} else {
this.targetLookup.text = 'Could not find any matching objects';
this.targetLookup.failed = true;