@chat21/chat21-web-widget 5.0.91 → 5.0.93
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/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.ts +1 -1
- package/src/assets/twp/blank.html +2 -0
- package/src/assets/twp/chatbot-panel.html +4 -1
- package/src/assets/twp/index-dev.html +2 -0
- package/src/assets/twp/index.html +2 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.ts
CHANGED
|
@@ -292,7 +292,7 @@ export class ConversationFooterComponent implements OnInit, OnChanges {
|
|
|
292
292
|
}else if ((metadata.type.startsWith('image') && metadata.type.includes('svg')) || !metadata.type.startsWith('image')){
|
|
293
293
|
/** CASE FILE */
|
|
294
294
|
type_message = TYPE_MSG_FILE
|
|
295
|
-
|
|
295
|
+
message = message + '\n' + messageText
|
|
296
296
|
} else if (!metadata.type.startsWith('image')){
|
|
297
297
|
/** CASE FILE */
|
|
298
298
|
type_message = TYPE_MSG_FILE
|
|
@@ -468,7 +468,10 @@
|
|
|
468
468
|
hideHeaderCloseButton: true,
|
|
469
469
|
hideCloseConversationOptionMenu: true,
|
|
470
470
|
isLogEnabled:true,
|
|
471
|
-
customAttributes: { sound: false }
|
|
471
|
+
customAttributes: { sound: false },
|
|
472
|
+
displayOnDesktop: true,
|
|
473
|
+
displayOnMobile: true,
|
|
474
|
+
soundEnabled: false
|
|
472
475
|
// autostart: false
|
|
473
476
|
|
|
474
477
|
};
|