Skip to content

Commit

Permalink
Fix issue where explorer wouldn't display application name correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderMertens committed Nov 1, 2024
1 parent 4129742 commit 39f2f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 39f2f91

Please sign in to comment.