@@ -214,7 +214,7 @@ export default {
214214 onTitleChange : debounce ( function ( text ) {
215215 this . $emit ( 'update:text' , text )
216216 this . saveQuestionProperty ( 'text' , text )
217- } , 200 ) ,
217+ } , 400 ) ,
218218
219219 /**
220220 * Forward the description change to the parent and store to db
@@ -224,7 +224,7 @@ export default {
224224 onDescriptionChange : debounce ( function ( description ) {
225225 this . $emit ( 'update:description' , description )
226226 this . saveQuestionProperty ( 'description' , description )
227- } , 200 ) ,
227+ } , 400 ) ,
228228
229229 /**
230230 * Forward the required change to the parent and store to db
@@ -234,7 +234,7 @@ export default {
234234 onRequiredChange : debounce ( function ( isRequiredValue ) {
235235 this . $emit ( 'update:isRequired' , isRequiredValue )
236236 this . saveQuestionProperty ( 'isRequired' , isRequiredValue )
237- } , 200 ) ,
237+ } , 400 ) ,
238238
239239 /**
240240 * Create mapper to forward the required change to the parent and store to db
@@ -247,7 +247,7 @@ export default {
247247 const newExtraSettings = { ...this . extraSettings , ...newSettings }
248248 this . $emit ( 'update:extraSettings' , newExtraSettings )
249249 this . saveQuestionProperty ( 'extraSettings' , newExtraSettings )
250- } , 200 ) ,
250+ } , 400 ) ,
251251
252252 /**
253253 * Forward the technical-name change to the parent and store to db
@@ -257,7 +257,7 @@ export default {
257257 onNameChange : debounce ( function ( name ) {
258258 this . $emit ( 'update:name' , name )
259259 this . saveQuestionProperty ( 'name' , name )
260- } , 200 ) ,
260+ } , 400 ) ,
261261
262262 /**
263263 * Forward the required change to the parent and store to db
0 commit comments