@agent-link/server 0.1.59 → 0.1.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/web/app.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-link/server",
3
- "version": "0.1.59",
3
+ "version": "0.1.60",
4
4
  "description": "AgentLink relay server",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/web/app.js CHANGED
@@ -240,7 +240,7 @@ const App = {
240
240
  const messageCount = computed(() => messages.value.length);
241
241
  watch(messageCount, () => { nextTick(scheduleHighlight); });
242
242
 
243
- watch(agentName, (name) => {
243
+ watch(hostname, (name) => {
244
244
  document.title = name ? `${name} — AgentLink` : 'AgentLink';
245
245
  });
246
246