@agent-link/server 0.1.136 → 0.1.138

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-link/server",
3
- "version": "0.1.136",
3
+ "version": "0.1.138",
4
4
  "description": "AgentLink relay server",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -134,6 +134,7 @@ export function createTeam(deps) {
134
134
  }
135
135
 
136
136
  function newTeam() {
137
+ teamMode.value = 'team';
137
138
  historicalTeam.value = null;
138
139
  activeAgentView.value = null;
139
140
  // If completed team is still in teamState, clear it so create panel shows
package/web/style.css CHANGED
@@ -3539,11 +3539,16 @@ body {
3539
3539
  .sidebar-teams {
3540
3540
  padding: 0.75rem;
3541
3541
  max-height: 35%;
3542
- overflow-y: auto;
3542
+ overflow: hidden;
3543
3543
  flex-shrink: 0;
3544
+ display: flex;
3545
+ flex-direction: column;
3544
3546
  }
3545
3547
 
3546
3548
  .team-history-list {
3549
+ flex: 1 1 auto;
3550
+ overflow-y: auto;
3551
+ min-height: 0;
3547
3552
  display: flex;
3548
3553
  flex-direction: column;
3549
3554
  gap: 2px;