@agenticmail/enterprise 0.5.272 → 0.5.273
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.
|
@@ -138,7 +138,7 @@ export function DatabaseAccessPage() {
|
|
|
138
138
|
return h('div', { style: s.page },
|
|
139
139
|
h('div', { style: s.header },
|
|
140
140
|
h('div', { style: s.title },
|
|
141
|
-
I.database(
|
|
141
|
+
I.database(),
|
|
142
142
|
'Database Access',
|
|
143
143
|
HelpButton({
|
|
144
144
|
title: 'Database Access',
|
|
@@ -176,7 +176,7 @@ function ConnectionsTab(props) {
|
|
|
176
176
|
var connections = props.connections;
|
|
177
177
|
if (connections.length === 0) {
|
|
178
178
|
return h('div', { style: s.emptyState },
|
|
179
|
-
h('div', { style: s.emptyIcon }, I.database(
|
|
179
|
+
h('div', { style: s.emptyIcon }, I.database()),
|
|
180
180
|
h('div', { style: 'font-size: 16px; font-weight: 600; margin-bottom: 8px;' }, 'No Database Connections'),
|
|
181
181
|
h('div', null, 'Add a connection to let your agents query external databases.'),
|
|
182
182
|
);
|
package/package.json
CHANGED
|
@@ -138,7 +138,7 @@ export function DatabaseAccessPage() {
|
|
|
138
138
|
return h('div', { style: s.page },
|
|
139
139
|
h('div', { style: s.header },
|
|
140
140
|
h('div', { style: s.title },
|
|
141
|
-
I.database(
|
|
141
|
+
I.database(),
|
|
142
142
|
'Database Access',
|
|
143
143
|
HelpButton({
|
|
144
144
|
title: 'Database Access',
|
|
@@ -176,7 +176,7 @@ function ConnectionsTab(props) {
|
|
|
176
176
|
var connections = props.connections;
|
|
177
177
|
if (connections.length === 0) {
|
|
178
178
|
return h('div', { style: s.emptyState },
|
|
179
|
-
h('div', { style: s.emptyIcon }, I.database(
|
|
179
|
+
h('div', { style: s.emptyIcon }, I.database()),
|
|
180
180
|
h('div', { style: 'font-size: 16px; font-weight: 600; margin-bottom: 8px;' }, 'No Database Connections'),
|
|
181
181
|
h('div', null, 'Add a connection to let your agents query external databases.'),
|
|
182
182
|
);
|