diff --git a/src/common-components/textbox-question/textbox-question.vue b/src/common-components/textbox-question/textbox-question.vue index cf12100c2..197e67a63 100644 --- a/src/common-components/textbox-question/textbox-question.vue +++ b/src/common-components/textbox-question/textbox-question.vue @@ -69,6 +69,7 @@ export default { maxLength: String, // Left or center. Default is left questionAlignment: String, // Left or center. Default is left cornerStyle: String, // Left or center. Default is left + includeSearchIcon: Boolean, }, setup(props) { const propsClone = Object.assign({}, props); @@ -105,11 +106,6 @@ export default { errors, }; }, - data() { - return { - includeSearchIcon: false, - }; - }, computed: { isRoundedPill() { return this.cornerStyle === "rounded";