@agent-link/server 0.1.147 → 0.1.148
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 +8 -3
package/package.json
CHANGED
package/web/app.js
CHANGED
|
@@ -848,9 +848,14 @@ const App = {
|
|
|
848
848
|
<div class="sidebar-section sidebar-teams">
|
|
849
849
|
<div class="sidebar-section-header" @click="teamsCollapsed = !teamsCollapsed" style="cursor: pointer;">
|
|
850
850
|
<span>Teams History</span>
|
|
851
|
-
<
|
|
852
|
-
<
|
|
853
|
-
|
|
851
|
+
<span class="sidebar-section-header-actions">
|
|
852
|
+
<button class="sidebar-refresh-btn" @click.stop="requestTeamsList" title="Refresh">
|
|
853
|
+
<svg viewBox="0 0 24 24" width="14" height="14"><path fill="currentColor" d="M17.65 6.35A7.958 7.958 0 0 0 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08A5.99 5.99 0 0 1 12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/></svg>
|
|
854
|
+
</button>
|
|
855
|
+
<button class="sidebar-collapse-btn" :title="teamsCollapsed ? 'Expand' : 'Collapse'">
|
|
856
|
+
<svg :class="{ collapsed: teamsCollapsed }" viewBox="0 0 24 24" width="14" height="14"><path fill="currentColor" d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6z"/></svg>
|
|
857
|
+
</button>
|
|
858
|
+
</span>
|
|
854
859
|
</div>
|
|
855
860
|
|
|
856
861
|
<div v-show="!teamsCollapsed">
|