From 39f2f9179773758f6c6327e4e188265c11e69647 Mon Sep 17 00:00:00 2001 From: Sander Mertens Date: Fri, 1 Nov 2024 13:43:45 -0700 Subject: [PATCH] Fix issue where explorer wouldn't display application name correctly --- etc/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/js/app.js b/etc/js/app.js index d8df3d1..3bdb55c 100644 --- a/etc/js/app.js +++ b/etc/js/app.js @@ -244,7 +244,7 @@ Promise.all(components).then((values) => { // Copy heartbeat to reactive properties on_heartbeat: function(msg) { if (msg.components) { - let lbl = msg.components["(Description,Name)"]; + let lbl = msg.components["(flecs.doc.Description,flecs.core.Name)"]; if (lbl) { this.app_state.app_name = lbl.value; }