From 7c07b66cc9da43d4b0eb4914a72ea090ffcf4f41 Mon Sep 17 00:00:00 2001 From: Nikhil Date: Thu, 30 Apr 2020 16:30:09 -0700 Subject: [PATCH] [Notebook] : Error in event handler for "updateSection": "TypeError: Cannot read property 'id' of undefined" #2921 (#2924) Co-authored-by: Andrew Henry --- src/plugins/notebook/components/notebook.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/notebook/components/notebook.vue b/src/plugins/notebook/components/notebook.vue index d7c01d25d1..326d752fde 100644 --- a/src/plugins/notebook/components/notebook.vue +++ b/src/plugins/notebook/components/notebook.vue @@ -495,7 +495,7 @@ export default { return; } - if (section.id !== defaultNotebookSection.id) { + if (id !== defaultNotebookSection.id) { return; }