clay-server 4.0.0-beta.20 → 4.0.0-beta.21

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.
@@ -651,7 +651,7 @@
651
651
  }
652
652
 
653
653
  /* --- Session visibility indicator --- */
654
- .session-private-icon {
654
+ .session-shared-icon {
655
655
  display: inline-flex;
656
656
  align-items: center;
657
657
  margin-right: 4px;
@@ -659,7 +659,7 @@
659
659
  vertical-align: middle;
660
660
  }
661
661
 
662
- .session-private-icon svg {
662
+ .session-shared-icon svg {
663
663
  width: 12px;
664
664
  height: 12px;
665
665
  }
@@ -1290,8 +1290,8 @@ function renderSessionItem(s, options) {
1290
1290
  if (s.loop && s.loop.source === "debate") {
1291
1291
  textHtml += '<span class="session-debate-icon" title="Debate">' + iconHtml("mic") + '</span>';
1292
1292
  }
1293
- if (store.get('isMultiUserMode') && s.sessionVisibility !== "shared") {
1294
- textHtml += '<span class="session-private-icon" title="Private session">' + iconHtml("lock") + '</span>';
1293
+ if (store.get('isMultiUserMode') && s.sessionVisibility === "shared") {
1294
+ textHtml += '<span class="session-shared-icon" title="Shared session" aria-label="Shared session">' + iconHtml("users") + '</span>';
1295
1295
  }
1296
1296
  textHtml += highlightMatch(s.title || "New Session", searchQuery);
1297
1297
  textSpan.innerHTML = textHtml;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clay-server",
3
- "version": "4.0.0-beta.20",
3
+ "version": "4.0.0-beta.21",
4
4
  "description": "Self-hosted team workspace for Claude Code and Codex. Multi-user, browser-based, with persistent AI mates.",
5
5
  "bin": {
6
6
  "clay-server": "./bin/cli.js",