* test(shangwutong): cover CID rename reliability * H-43: fix WEB Captain takeover flow * H-48: preserve compatible provider model * H-49: make Captain takeover atomic * H-50: prevent duplicate widget initialization --------- Co-authored-by: Rogee <rogee@ipao.vip>
14 lines
304 B
JavaScript
14 lines
304 B
JavaScript
export default {
|
|
computed: {
|
|
messageContentAttributes() {
|
|
const { content_attributes: attribute = {} } = this.message;
|
|
return attribute || {};
|
|
},
|
|
hasAttachments() {
|
|
return !!(
|
|
this.message.attachments && this.message.attachments.length > 0
|
|
);
|
|
},
|
|
},
|
|
};
|