@hivegpt/hiveai-angular 0.0.170 → 0.0.171
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/bundles/hivegpt-hiveai-angular.umd.js +2 -2
- package/bundles/hivegpt-hiveai-angular.umd.js.map +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js.map +1 -1
- package/esm2015/lib/components/chat-drawer/chat-drawer.component.js +3 -3
- package/fesm2015/hivegpt-hiveai-angular.js +2 -2
- package/fesm2015/hivegpt-hiveai-angular.js.map +1 -1
- package/package.json +1 -1
|
@@ -1050,7 +1050,7 @@
|
|
|
1050
1050
|
}
|
|
1051
1051
|
this.chatLog.push({
|
|
1052
1052
|
type: 'user',
|
|
1053
|
-
message: this.
|
|
1053
|
+
message: this.processMessageForDisplay(this.input),
|
|
1054
1054
|
time: formatNow(this.timezone),
|
|
1055
1055
|
copied: false,
|
|
1056
1056
|
isCollapsedTrue: false
|
|
@@ -1096,7 +1096,7 @@
|
|
|
1096
1096
|
this.scrollToBottom();
|
|
1097
1097
|
this.chatLog.push({
|
|
1098
1098
|
type: 'user',
|
|
1099
|
-
message: this.
|
|
1099
|
+
message: this.processMessageForDisplay(inputMsg),
|
|
1100
1100
|
time: formatNow(this.timezone),
|
|
1101
1101
|
copied: false,
|
|
1102
1102
|
isCollapsedTrue: false
|