From 5bd4857a6734ef597566c525fc62dee6efa7f575 Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Wed, 11 Mar 2026 10:51:16 +0100 Subject: [PATCH] fix(servo-shell): show app name in APP_READY notification system-ui.html: APP_READY handler extracts the last component of msg.app_id (e.g. 'notes' from 'com.example.notes') and shows ' is ready'. Falls back to the session_id if app_id is absent. --- infra/shell/system-ui.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infra/shell/system-ui.html b/infra/shell/system-ui.html index 2db6657..9d9971e 100644 --- a/infra/shell/system-ui.html +++ b/infra/shell/system-ui.html @@ -202,7 +202,8 @@ function handleAppdMessage(msg) { if (msg.type === 'APP_READY') { - showNotification('App ready (session ' + msg.session_id + ')'); + var label = msg.app_id ? msg.app_id.split('.').pop() : String(msg.session_id); + showNotification(label + ' is ready'); } else if (msg.type === 'APP_STATE') { if (msg.state === 'stopped') { removeTaskbarEntry(msg.session_id);