|
@@ -67223,7 +67223,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
},
|
|
},
|
|
|
|
|
|
async render() {
|
|
async render() {
|
|
- let msg;
|
|
|
|
|
|
+ const is_followup = u.hasClass('chat-msg--followup', this.el);
|
|
|
|
|
|
if (this.model.isOnlyChatStateNotification()) {
|
|
if (this.model.isOnlyChatStateNotification()) {
|
|
this.renderChatStateNotification();
|
|
this.renderChatStateNotification();
|
|
@@ -67235,6 +67235,10 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
await this.renderChatMessage();
|
|
await this.renderChatMessage();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (is_followup) {
|
|
|
|
+ u.addClass('chat-msg--followup', this.el);
|
|
|
|
+ }
|
|
|
|
+
|
|
return this.el;
|
|
return this.el;
|
|
},
|
|
},
|
|
|
|
|