feat: reset password flow

- feat: notification emails including - welcome email, assigned conversation email, reset password email.
- feat: adds outer app component which does not have a navbar
- feat: improve email templating, adds contact and conversations fields to email template
- fix: evaluator - ensure "contains" checks evaluate individual tokens in the string rather than the entire string.
- feat: logo URL for the app in general settings.
- General fixes and refactors.
- fix: hide trailing prose mirror line breaks.
This commit is contained in:
Abhinav Raut
2024-11-03 00:40:04 +05:30
parent 2b911d049e
commit ed314eb1a5
44 changed files with 1207 additions and 454 deletions

View File

@@ -112,9 +112,8 @@ watch(
() => props.contentToSet,
(newContent) => {
if (newContent) {
editor.value.commands.setContent(newContent, false,{
preserveWhitespace: "full"
})
// Remove trailing break when setting content
editor.value.commands.setContent(newContent)
editor.value.commands.focus()
emit('contentSet')
}
@@ -154,4 +153,7 @@ onUnmounted(() => {
}
}
}
br.ProseMirror-trailingBreak {
display: none;
}
</style>