Skip to content

Commit

Permalink
fix: 文本框组件展示内容为underfind问题修复 --bug=129170523
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 23746
  • Loading branch information
ywywZhou authored and luofann committed Nov 13, 2024
1 parent 9cf1cc6 commit 15bef9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
const divInputDom = this.$el.querySelector('.div-input')
if (divInputDom) {
const value = typeof this.value === 'string' ? this.value : JSON.stringify(this.value)
divInputDom.innerText = this.formMode ? value : this.viewValue
divInputDom.innerText = value
if (this.formMode && this.render && value) {
this.updateInputHtml()
}
Expand Down

0 comments on commit 15bef9b

Please sign in to comment.