@hivegpt/hiveai-angular 0.0.597 → 0.0.598
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/esm2020/lib/components/chat-drawer/chat-drawer.component.mjs +5 -5
- package/fesm2015/hivegpt-hiveai-angular.mjs +4 -4
- package/fesm2015/hivegpt-hiveai-angular.mjs.map +1 -1
- package/fesm2020/hivegpt-hiveai-angular.mjs +4 -4
- package/fesm2020/hivegpt-hiveai-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2266,8 +2266,8 @@ class ChatDrawerComponent {
|
|
|
2266
2266
|
}
|
|
2267
2267
|
getStatusTextFromSessionRoles(sessionRoles) {
|
|
2268
2268
|
if (!Array.isArray(sessionRoles) || sessionRoles.length === 0) {
|
|
2269
|
-
return (this.getTranslation('
|
|
2270
|
-
'
|
|
2269
|
+
return (this.getTranslation('') ||
|
|
2270
|
+
'');
|
|
2271
2271
|
}
|
|
2272
2272
|
const first = sessionRoles[0];
|
|
2273
2273
|
if (typeof first === 'string') {
|
|
@@ -2278,8 +2278,8 @@ class ChatDrawerComponent {
|
|
|
2278
2278
|
if (first && typeof first === 'object' && first.description) {
|
|
2279
2279
|
return String(first.description).trim();
|
|
2280
2280
|
}
|
|
2281
|
-
return (this.getTranslation('
|
|
2282
|
-
'
|
|
2281
|
+
return (this.getTranslation('') ||
|
|
2282
|
+
'');
|
|
2283
2283
|
}
|
|
2284
2284
|
mapSessionsToCardData(sessions) {
|
|
2285
2285
|
if (!Array.isArray(sessions))
|