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:
Shivam Mishra
2024-11-13 12:29:50 +05:30
committed by GitHub
parent 7dc0eba48a
commit ac729cf0cf

View File

@@ -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,