diff --git a/src/components/Properties/PropertyText.vue b/src/components/Properties/PropertyText.vue index c668a09f1..ffc7148c7 100644 --- a/src/components/Properties/PropertyText.vue +++ b/src/components/Properties/PropertyText.vue @@ -58,7 +58,7 @@ id="textarea" ref="textarea" v-model.trim="localValue" - :type="type" + :inputmode="inputmode" :readonly="isReadOnly" class="property__value" @input="updateValueNoDebounce" @@ -68,9 +68,10 @@ @@ -137,7 +138,7 @@ export default { // length is one & add one space at the end return hasTitle + 1 + isLast + noteHeight }, - type() { + inputmode() { if (this.propName === 'tel') { return 'tel' } else if (this.propName === 'email') { @@ -145,7 +146,7 @@ export default { } else if (this.propType === 'uri') { return 'url' } - return 'text' + return false }, URLScheme() { if (this.propName === 'tel') {