From 63ef3ce95435d98027c42892bda4d1af8e22932d Mon Sep 17 00:00:00 2001 From: Emmy Leke Date: Wed, 5 Apr 2023 12:27:47 +0100 Subject: [PATCH] Fix the title disappearing issue --- client/web/compose/src/mixins/pages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/web/compose/src/mixins/pages.js b/client/web/compose/src/mixins/pages.js index 243af455e..b05dff6d7 100644 --- a/client/web/compose/src/mixins/pages.js +++ b/client/web/compose/src/mixins/pages.js @@ -96,7 +96,7 @@ export default { const tab = { // fetchID gets the blockID using the found block blockID: fetchID(updatedBlock), - title: updatedBlock.title, + title: t.title, } b.options.tabs.splice(j, 1, tab)