@agenticmail/enterprise 0.5.243 → 0.5.244
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.
|
@@ -184,7 +184,7 @@ function McpServersSection() {
|
|
|
184
184
|
// Server list
|
|
185
185
|
loading ? h('div', { style: { padding: 32, textAlign: 'center', color: 'var(--text-muted)', fontSize: 13 } }, 'Loading MCP servers...')
|
|
186
186
|
: servers.length === 0 ? h('div', { style: { padding: 32, textAlign: 'center', border: '2px dashed var(--border)', borderRadius: 'var(--radius-lg)', color: 'var(--text-muted)' } },
|
|
187
|
-
h('div', { style: { marginBottom: 8 } }, I.
|
|
187
|
+
h('div', { style: { marginBottom: 8 } }, I.terminal()),
|
|
188
188
|
h('p', { style: { fontSize: 14, fontWeight: 500, marginBottom: 4 } }, 'No MCP servers connected'),
|
|
189
189
|
h('p', { style: { fontSize: 12 } }, 'Add an MCP server to extend your agents with external tools'),
|
|
190
190
|
h('button', { className: 'btn btn-secondary btn-sm', style: { marginTop: 12 }, onClick: openAdd }, I.plus(), ' Add Your First Server')
|
|
@@ -723,7 +723,7 @@ export function SkillConnectionsPage() {
|
|
|
723
723
|
|
|
724
724
|
// Tab bar
|
|
725
725
|
h('div', { className: 'tabs', style: { marginBottom: 20 } },
|
|
726
|
-
h('div', { className: 'tab' + (tab === 'mcp' ? ' active' : ''), onClick: function() { setTab('mcp'); } }, I.
|
|
726
|
+
h('div', { className: 'tab' + (tab === 'mcp' ? ' active' : ''), onClick: function() { setTab('mcp'); } }, I.terminal(), ' MCP Servers'),
|
|
727
727
|
h('div', { className: 'tab' + (tab === 'integrations' ? ' active' : ''), onClick: function() { setTab('integrations'); } }, I.globe(), ' Built-in Integrations'),
|
|
728
728
|
h('div', { className: 'tab' + (tab === 'community' ? ' active' : ''), onClick: function() { setTab('community'); } }, I.users(), ' Community Skills')
|
|
729
729
|
),
|
package/package.json
CHANGED
|
@@ -184,7 +184,7 @@ function McpServersSection() {
|
|
|
184
184
|
// Server list
|
|
185
185
|
loading ? h('div', { style: { padding: 32, textAlign: 'center', color: 'var(--text-muted)', fontSize: 13 } }, 'Loading MCP servers...')
|
|
186
186
|
: servers.length === 0 ? h('div', { style: { padding: 32, textAlign: 'center', border: '2px dashed var(--border)', borderRadius: 'var(--radius-lg)', color: 'var(--text-muted)' } },
|
|
187
|
-
h('div', { style: { marginBottom: 8 } }, I.
|
|
187
|
+
h('div', { style: { marginBottom: 8 } }, I.terminal()),
|
|
188
188
|
h('p', { style: { fontSize: 14, fontWeight: 500, marginBottom: 4 } }, 'No MCP servers connected'),
|
|
189
189
|
h('p', { style: { fontSize: 12 } }, 'Add an MCP server to extend your agents with external tools'),
|
|
190
190
|
h('button', { className: 'btn btn-secondary btn-sm', style: { marginTop: 12 }, onClick: openAdd }, I.plus(), ' Add Your First Server')
|
|
@@ -723,7 +723,7 @@ export function SkillConnectionsPage() {
|
|
|
723
723
|
|
|
724
724
|
// Tab bar
|
|
725
725
|
h('div', { className: 'tabs', style: { marginBottom: 20 } },
|
|
726
|
-
h('div', { className: 'tab' + (tab === 'mcp' ? ' active' : ''), onClick: function() { setTab('mcp'); } }, I.
|
|
726
|
+
h('div', { className: 'tab' + (tab === 'mcp' ? ' active' : ''), onClick: function() { setTab('mcp'); } }, I.terminal(), ' MCP Servers'),
|
|
727
727
|
h('div', { className: 'tab' + (tab === 'integrations' ? ' active' : ''), onClick: function() { setTab('integrations'); } }, I.globe(), ' Built-in Integrations'),
|
|
728
728
|
h('div', { className: 'tab' + (tab === 'community' ? ' active' : ''), onClick: function() { setTab('community'); } }, I.users(), ' Community Skills')
|
|
729
729
|
),
|