mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-13 18:36:03 +00:00
fix: whitespace being trimmed in canned repsonse
- refactor: conversations store. - feat: Show conversation subject on top of conversation messages list - feat: adds shadow to panels - update: schema.sql adds insert statements for priority / status - fix: trim canned response content to 100 chars. - revert: rename team conversations tab to unassigned.
This commit is contained in:
@@ -111,7 +111,9 @@ watch(
|
||||
() => props.contentToSet,
|
||||
(newContent) => {
|
||||
if (newContent) {
|
||||
editor.value.commands.setContent(newContent)
|
||||
editor.value.commands.setContent(newContent, false, {
|
||||
preserveWhitespace: "full"
|
||||
})
|
||||
editor.value.commands.focus()
|
||||
emit('contentSet')
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user