mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 18:47:51 +00:00
Fix: Order list number break issue (#2097)
This commit is contained in:
@@ -147,7 +147,7 @@ export default {
|
|||||||
if (messageType === MESSAGE_TYPE.ACTIVITY) {
|
if (messageType === MESSAGE_TYPE.ACTIVITY) {
|
||||||
return 'center';
|
return 'center';
|
||||||
}
|
}
|
||||||
return !this.data.message_type ? 'left' : 'right';
|
return !messageType ? 'left' : 'right';
|
||||||
},
|
},
|
||||||
readableTime() {
|
readableTime() {
|
||||||
return this.messageStamp(this.data.created_at, 'LLL d, h:mm a');
|
return this.messageStamp(this.data.created_at, 'LLL d, h:mm a');
|
||||||
|
|||||||
@@ -25,5 +25,12 @@ export default {
|
|||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.text-content {
|
.text-content {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
||||||
|
&::v-deep {
|
||||||
|
ul,
|
||||||
|
ol {
|
||||||
|
margin-left: var(--space-normal);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user