@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
|
@@ -2283,8 +2283,8 @@ class ChatDrawerComponent {
|
|
|
2283
2283
|
}
|
|
2284
2284
|
getStatusTextFromSessionRoles(sessionRoles) {
|
|
2285
2285
|
if (!Array.isArray(sessionRoles) || sessionRoles.length === 0) {
|
|
2286
|
-
return (this.getTranslation('
|
|
2287
|
-
'
|
|
2286
|
+
return (this.getTranslation('') ||
|
|
2287
|
+
'');
|
|
2288
2288
|
}
|
|
2289
2289
|
const first = sessionRoles[0];
|
|
2290
2290
|
if (typeof first === 'string') {
|
|
@@ -2295,8 +2295,8 @@ class ChatDrawerComponent {
|
|
|
2295
2295
|
if (first && typeof first === 'object' && first.description) {
|
|
2296
2296
|
return String(first.description).trim();
|
|
2297
2297
|
}
|
|
2298
|
-
return (this.getTranslation('
|
|
2299
|
-
'
|
|
2298
|
+
return (this.getTranslation('') ||
|
|
2299
|
+
'');
|
|
2300
2300
|
}
|
|
2301
2301
|
mapSessionsToCardData(sessions) {
|
|
2302
2302
|
if (!Array.isArray(sessions))
|