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:
Abhinav Raut
2024-10-11 05:31:12 +05:30
parent 7e15995048
commit fbf631d8ad
33 changed files with 247 additions and 289 deletions

View File

@@ -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')
}