Apply Mentions everywhere (#595)
* variables and mentions * fix lint * add missing changes * fix tests * update quilly, fix bugs * fix lint * apply fixes * apply fixes * Fix MentionParser * Apply Mentions everywhere * Fix MentionParserTest * Small refactoring * Fixing quill import issues * Polished email integration, added customer sender mail * Add missing changes * improve migration command --------- Co-authored-by: Frank <csskfaves@gmail.com> Co-authored-by: Julien Nahum <julien@nahum.net>
This commit is contained in:
2
client/composables/lib/vForm/Form.js
vendored
2
client/composables/lib/vForm/Form.js
vendored
@@ -89,7 +89,7 @@ class Form {
|
||||
Object.keys(this)
|
||||
.filter((key) => !Form.ignore.includes(key))
|
||||
.forEach((key) => {
|
||||
this[key] = JSON.parse(JSON.stringify(this.originalData[key]))
|
||||
this[key] = cloneDeep(this.originalData[key])
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user