mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
fix: Fix the sender tooltip getting undefined in bot messages (#2453)
This commit is contained in:
@@ -71,7 +71,7 @@ import BubbleText from './bubble/Text';
|
||||
import BubbleImage from './bubble/Image';
|
||||
import BubbleFile from './bubble/File';
|
||||
import Spinner from 'shared/components/Spinner';
|
||||
|
||||
import { isEmptyObject } from 'dashboard/helper/commons';
|
||||
import contentTypeMixin from 'shared/mixins/contentTypeMixin';
|
||||
import BubbleActions from './bubble/Actions';
|
||||
import { MESSAGE_TYPE, MESSAGE_STATUS } from 'shared/constants/messages';
|
||||
@@ -95,11 +95,6 @@ export default {
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
isHovered: false,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
message() {
|
||||
const botMessageContent = generateBotMessageContent(
|
||||
@@ -179,8 +174,7 @@ export default {
|
||||
},
|
||||
sentByMessage() {
|
||||
const { sender } = this;
|
||||
|
||||
return this.data.message_type === 1 && !this.isHovered && sender
|
||||
return this.data.message_type === 1 && !isEmptyObject(sender)
|
||||
? {
|
||||
content: `${this.$t('CONVERSATION.SENT_BY')} ${sender.name}`,
|
||||
classes: 'top',
|
||||
|
||||
Reference in New Issue
Block a user