mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-20 21:15:01 +00:00
fix: Remove the usage of DragWrapper to fix the Dyte integration (#8655)
This commit is contained in:
@@ -19,11 +19,7 @@
|
|||||||
<reply-to-chip :reply-to="replyTo" />
|
<reply-to-chip :reply-to="replyTo" />
|
||||||
</div>
|
</div>
|
||||||
<div class="flex gap-1">
|
<div class="flex gap-1">
|
||||||
<drag-wrapper
|
<div class="space-y-2">
|
||||||
class="space-y-2"
|
|
||||||
direction="right"
|
|
||||||
@dragged="toggleReply"
|
|
||||||
>
|
|
||||||
<AgentMessageBubble
|
<AgentMessageBubble
|
||||||
v-if="shouldDisplayAgentMessage"
|
v-if="shouldDisplayAgentMessage"
|
||||||
:content-type="contentType"
|
:content-type="contentType"
|
||||||
@@ -54,7 +50,7 @@
|
|||||||
<file-bubble v-else :url="attachment.data_url" />
|
<file-bubble v-else :url="attachment.data_url" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</drag-wrapper>
|
</div>
|
||||||
<div class="flex flex-col justify-end">
|
<div class="flex flex-col justify-end">
|
||||||
<message-reply-button
|
<message-reply-button
|
||||||
class="transition-opacity delay-75 opacity-0 group-hover:opacity-100 sm:opacity-0"
|
class="transition-opacity delay-75 opacity-0 group-hover:opacity-100 sm:opacity-0"
|
||||||
@@ -96,7 +92,6 @@ import messageMixin from '../mixins/messageMixin';
|
|||||||
import { isASubmittedFormMessage } from 'shared/helpers/MessageTypeHelper';
|
import { isASubmittedFormMessage } from 'shared/helpers/MessageTypeHelper';
|
||||||
import darkModeMixin from 'widget/mixins/darkModeMixin.js';
|
import darkModeMixin from 'widget/mixins/darkModeMixin.js';
|
||||||
import ReplyToChip from 'widget/components/ReplyToChip.vue';
|
import ReplyToChip from 'widget/components/ReplyToChip.vue';
|
||||||
import DragWrapper from 'widget/components/DragWrapper.vue';
|
|
||||||
import { BUS_EVENTS } from 'shared/constants/busEvents';
|
import { BUS_EVENTS } from 'shared/constants/busEvents';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -109,7 +104,6 @@ export default {
|
|||||||
FileBubble,
|
FileBubble,
|
||||||
MessageReplyButton,
|
MessageReplyButton,
|
||||||
ReplyToChip,
|
ReplyToChip,
|
||||||
DragWrapper,
|
|
||||||
},
|
},
|
||||||
mixins: [timeMixin, configMixin, messageMixin, darkModeMixin],
|
mixins: [timeMixin, configMixin, messageMixin, darkModeMixin],
|
||||||
props: {
|
props: {
|
||||||
|
|||||||
Reference in New Issue
Block a user