clay-server 2.11.0-beta.26 → 2.11.0-beta.28
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/lib/daemon.js +1 -0
- package/lib/public/app.js +3 -4
- package/package.json +1 -1
package/lib/daemon.js
CHANGED
package/lib/public/app.js
CHANGED
|
@@ -2525,10 +2525,9 @@ import { initAdmin, checkAdminAccess } from './modules/admin.js';
|
|
|
2525
2525
|
addToMessages(div);
|
|
2526
2526
|
scrollToBottom();
|
|
2527
2527
|
|
|
2528
|
-
//
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
sendBtn.disabled = true;
|
|
2528
|
+
// Hide input area on this session since it cannot be used
|
|
2529
|
+
var inputArea = document.getElementById("input-area");
|
|
2530
|
+
if (inputArea) inputArea.classList.add("hidden");
|
|
2532
2531
|
|
|
2533
2532
|
// Only auto-open terminal on live events, not history replay
|
|
2534
2533
|
if (!replayingHistory) {
|