black-yt commited on
Commit
c08d9ff
·
1 Parent(s): e81bd91

Shorten workspace download hint

Browse files
frontend/static/app.js CHANGED
@@ -234,8 +234,8 @@
234
  function updateWorkspaceHint(hasWorkspace) {
235
  if (!workspaceMeta) return;
236
  workspaceMeta.textContent = hasWorkspace
237
- ? "If you want to download files created or handled by the agent, click Download workspace.zip."
238
- : "Managed temporary workspace. After a run, click Download workspace.zip to download files created or handled by the agent.";
239
  }
240
 
241
  function closeModelDropdown() {
 
234
  function updateWorkspaceHint(hasWorkspace) {
235
  if (!workspaceMeta) return;
236
  workspaceMeta.textContent = hasWorkspace
237
+ ? "Agent files are ready to download as a zip."
238
+ : "Temporary workspace. Download agent files as a zip.";
239
  }
240
 
241
  function closeModelDropdown() {
frontend/static/index.html CHANGED
@@ -35,7 +35,7 @@
35
  </header>
36
 
37
  <section id="workspaceStrip" class="workspace-strip">
38
- <span id="workspaceMeta">Managed temporary workspace. After a run, click Download workspace.zip to download files created or handled by the agent.</span>
39
  <button id="downloadWorkspaceBtn" class="download-workspace" type="button" disabled>
40
  Download workspace.zip
41
  </button>
 
35
  </header>
36
 
37
  <section id="workspaceStrip" class="workspace-strip">
38
+ <span id="workspaceMeta">Temporary workspace. Download agent files as a zip.</span>
39
  <button id="downloadWorkspaceBtn" class="download-workspace" type="button" disabled>
40
  Download workspace.zip
41
  </button>