@agenticmail/enterprise 0.5.35 → 0.5.36
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.
|
@@ -3430,7 +3430,7 @@ function DeploymentSection(props) {
|
|
|
3430
3430
|
return h('tr', { key: kb.id || i },
|
|
3431
3431
|
h('td', { style: { fontWeight: 500, fontSize: 13 } }, kb.name || 'Unnamed'),
|
|
3432
3432
|
h('td', { style: { fontSize: 12, color: 'var(--text-muted)', maxWidth: 300, overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' } }, kb.description || '-'),
|
|
3433
|
-
h('td', null, String(kb.documentCount || kb.documents || kb.docCount || 0))
|
|
3433
|
+
h('td', null, String(kb.documentCount || (Array.isArray(kb.documents) ? kb.documents.length : kb.documents) || kb.docCount || 0))
|
|
3434
3434
|
);
|
|
3435
3435
|
})
|
|
3436
3436
|
)
|
package/package.json
CHANGED
|
@@ -3430,7 +3430,7 @@ function DeploymentSection(props) {
|
|
|
3430
3430
|
return h('tr', { key: kb.id || i },
|
|
3431
3431
|
h('td', { style: { fontWeight: 500, fontSize: 13 } }, kb.name || 'Unnamed'),
|
|
3432
3432
|
h('td', { style: { fontSize: 12, color: 'var(--text-muted)', maxWidth: 300, overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' } }, kb.description || '-'),
|
|
3433
|
-
h('td', null, String(kb.documentCount || kb.documents || kb.docCount || 0))
|
|
3433
|
+
h('td', null, String(kb.documentCount || (Array.isArray(kb.documents) ? kb.documents.length : kb.documents) || kb.docCount || 0))
|
|
3434
3434
|
);
|
|
3435
3435
|
})
|
|
3436
3436
|
)
|