Skip to content

Commit

Permalink
fix(ssr): textarea keeps undefined/null values (#11121)
Browse files Browse the repository at this point in the history
* fix(ssr): textarea keeps undefined/null values

* refactor(ssr): Code review changes for null values in textareas
  • Loading branch information
danielsuguimoto committed Sep 21, 2020
1 parent 67825c2 commit b8bd149
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platforms/web/server/modules/dom-props.js
Expand Up @@ -2,7 +2,7 @@

import VNode from 'core/vdom/vnode'
import { renderAttr } from './attrs'
import { isDef, isUndef, extend } from 'shared/util'
import { isDef, isUndef, extend, toString } from 'shared/util'
import { propsToAttrMap, isRenderableAttr } from '../util'

export default function renderDOMProps (node: VNodeWithData): string {
Expand All @@ -28,7 +28,7 @@ export default function renderDOMProps (node: VNodeWithData): string {
} else if (key === 'textContent') {
setText(node, props[key], false)
} else if (key === 'value' && node.tag === 'textarea') {
setText(node, props[key], false)
setText(node, toString(props[key]), false)
} else {
// $flow-disable-line (WTF?)
const attr = propsToAttrMap[key] || key.toLowerCase()
Expand Down
19 changes: 19 additions & 0 deletions test/ssr/ssr-string.spec.js
Expand Up @@ -1594,6 +1594,25 @@ describe('SSR: renderToString', () => {

renderToString(vueInstance, err => done(err))
})

it('undefined v-model with textarea', done => {
renderVmWithOptions({
render (h) {
return h('div', [
h('textarea', {
domProps: {
value: null
}
})
])
}
}, result => {
expect(result).toContain(
'<div data-server-rendered="true"><textarea></textarea></div>'
)
done()
})
})
})

function renderVmWithOptions (options, cb) {
Expand Down

0 comments on commit b8bd149

Please sign in to comment.