feat: update debounce duration for article editor (#10410)
Quick fix for CW-3721 until we work on a better solution
This commit is contained in:
@@ -35,7 +35,7 @@ const emit = defineEmits([
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
const saveArticle = debounce(value => emit('saveArticle', value), 400, false);
|
||||
const saveArticle = debounce(value => emit('saveArticle', value), 600, false);
|
||||
|
||||
const articleTitle = computed({
|
||||
get: () => props.article.title,
|
||||
|
||||
Reference in New Issue
Block a user