From 06d1efc008f06f5246f11eb07c33b4cdd413edad Mon Sep 17 00:00:00 2001 From: Rukmini Bose Date: Wed, 5 Oct 2022 10:22:43 -0700 Subject: [PATCH] Fix lint error --- src/plugins/notebook/components/NotebookEmbed.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/notebook/components/NotebookEmbed.vue b/src/plugins/notebook/components/NotebookEmbed.vue index 50f706eb51..119a7b8809 100644 --- a/src/plugins/notebook/components/NotebookEmbed.vue +++ b/src/plugins/notebook/components/NotebookEmbed.vue @@ -165,7 +165,7 @@ export default { async setEmbedObjectPath() { this.objectPath = await this.openmct.objects.getOriginalPath(this.embed.domainObject.identifier); - if (this.objectPath[this.objectPath.length -1].type === 'root') { + if (this.objectPath[this.objectPath.length - 1].type === 'root') { this.objectPath.pop(); } },