@agent-link/server 0.1.172 → 0.1.174
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 +1 -1
- package/web/app.js +1 -1
- package/web/css/tools.css +0 -6
package/package.json
CHANGED
package/web/app.js
CHANGED
|
@@ -789,7 +789,7 @@ const App = {
|
|
|
789
789
|
workdirMenuBrowse() {
|
|
790
790
|
workdirMenuOpen.value = false;
|
|
791
791
|
if (isMobile.value) { sidebarView.value = 'files'; fileBrowser.openPanel(); }
|
|
792
|
-
else { fileBrowser.togglePanel(); }
|
|
792
|
+
else { memoryPanelOpen.value = false; fileBrowser.togglePanel(); }
|
|
793
793
|
},
|
|
794
794
|
workdirMenuChangeDir() {
|
|
795
795
|
workdirMenuOpen.value = false;
|
package/web/css/tools.css
CHANGED
|
@@ -93,12 +93,6 @@
|
|
|
93
93
|
border-left: 1px solid var(--border);
|
|
94
94
|
padding-left: 8px;
|
|
95
95
|
overflow: hidden;
|
|
96
|
-
animation: toolExpand 0.15s ease-out;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
@keyframes toolExpand {
|
|
100
|
-
from { opacity: 0; max-height: 0; }
|
|
101
|
-
to { opacity: 1; max-height: 500px; }
|
|
102
96
|
}
|
|
103
97
|
|
|
104
98
|
.tool-block {
|