cec-nuxt-lib 0.6.3 → 0.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -400,7 +400,7 @@ const makeQuestions = (data, id) => {
|
|
|
400
400
|
(acc, r) => {
|
|
401
401
|
return `${acc}<option value="${r.buttonText}">${r.buttonText}</option>`;
|
|
402
402
|
},
|
|
403
|
-
`<select class="question-select" name="${id}_${j}" id="${data.title.replace(/\W/g, '-')}_${qu.question.trim().replace('?', '').replace(/\W/g, '-')}_select_${id}_${j}">`
|
|
403
|
+
`<select class="question-select" name="${id}_${j}" id="${data.title.replace(/\W/g, '-')}_${qu.question.trim().replace('?', '').replace(/\W/g, '-')}_select_${id}_${j}"><option value="" disabled selected hidden>Choose an option</option>`
|
|
404
404
|
);
|
|
405
405
|
qu.select += '</select>';
|
|
406
406
|
}
|
package/package.json
CHANGED