Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/notebook/components/NotebookEntry.vue')
-rw-r--r--src/plugins/notebook/components/NotebookEntry.vue18
1 files changed, 7 insertions, 11 deletions
diff --git a/src/plugins/notebook/components/NotebookEntry.vue b/src/plugins/notebook/components/NotebookEntry.vue
index 947d1b4ff..58677621d 100644
--- a/src/plugins/notebook/components/NotebookEntry.vue
+++ b/src/plugins/notebook/components/NotebookEntry.vue
@@ -84,9 +84,8 @@
<TagEditor
:domain-object="domainObject"
- :annotation-query="annotationQuery"
+ :annotations="notebookAnnotations"
:annotation-type="openmct.annotation.ANNOTATION_TYPES.NOTEBOOK"
- :annotation-search-type="openmct.objects.SEARCH_TYPES.NOTEBOOK_ANNOTATIONS"
:target-specific-details="{entryId: entry.id}"
@tags-updated="timestampAndUpdate"
/>
@@ -163,6 +162,12 @@ export default {
return {};
}
},
+ notebookAnnotations: {
+ type: Array,
+ default() {
+ return [];
+ }
+ },
entry: {
type: Object,
default() {
@@ -204,15 +209,6 @@ export default {
createdOnDate() {
return this.formatTime(this.entry.createdOn, 'YYYY-MM-DD');
},
- annotationQuery() {
- const targetKeyString = this.openmct.objects.makeKeyString(this.domainObject.identifier);
-
- return {
- targetKeyString,
- entryId: this.entry.id,
- modified: this.entry.modified
- };
- },
createdOnTime() {
return this.formatTime(this.entry.createdOn, 'HH:mm:ss');
},