dsh-aris-panel 0.1.7 → 0.1.8

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/dsh/client.js +2 -1
  2. package/package.json +1 -1
package/dsh/client.js CHANGED
@@ -923,7 +923,8 @@ function ArisWorkbenchView(props) {
923
923
  const exps = data && data.experiments
924
924
  const stage = ov ? inferStage(ov) : 1
925
925
  const curWs = workspaces && workspaceId ? workspaces.find(function (w) { return w.id === workspaceId }) : (workspaces && workspaces.length > 0 ? workspaces[0] : undefined)
926
- const wsSessions = curWs && Array.isArray(curWs.sessions) ? curWs.sessions.filter(function (s) { return s.title || s.msgCount > 0 }) : []
926
+ // 展示该工作区账上的全部未归档会话;历史会话可能无 live 标题/消息数,不能据此隐藏(否则会话数对不上)
927
+ const wsSessions = curWs && Array.isArray(curWs.sessions) ? curWs.sessions : []
927
928
 
928
929
  const children = []
929
930
  children.push(h('div', { className: 'wb-header', key: 'head' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-aris-panel",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "ARIS research-workflow skills + interactive workbench panel for DeepSeek Harness (user fork of dsh-aris: 82 skills, cross-model Codex review, idea/workflow launcher, research status board).",
5
5
  "license": "MIT",
6
6
  "type": "module",