Skip to content

Commit c756da2

Browse files
authoredSep 2, 2024··
fix(hydration): handle text nodes with 0 during hydration (#11772)
close #11771
1 parent 3de5556 commit c756da2

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed
 

‎packages/runtime-core/__tests__/hydration.spec.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,10 @@ describe('SSR hydration', () => {
152152
// #7285
153153
test('element with multiple continuous text vnodes', async () => {
154154
// should no mismatch warning
155-
const { container } = mountWithHydration('<div>fooo</div>', () =>
156-
h('div', ['fo', createTextVNode('o'), 'o']),
155+
const { container } = mountWithHydration('<div>foo0o</div>', () =>
156+
h('div', ['fo', createTextVNode('o'), 0, 'o']),
157157
)
158-
expect(container.textContent).toBe('fooo')
158+
expect(container.textContent).toBe('foo0o')
159159
})
160160

161161
test('element with elements children', async () => {

‎packages/runtime-core/src/hydration.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -554,8 +554,7 @@ export function createHydrationFunctions(
554554
// JSX-compiled fns, but on the client the browser parses only 1 text
555555
// node.
556556
// look ahead for next possible text vnode
557-
let next = children[i + 1]
558-
if (next && (next = normalizeVNode(next)).type === Text) {
557+
if (i + 1 < l && normalizeVNode(children[i + 1]).type === Text) {
559558
// create an extra TextNode on the client for the next vnode to
560559
// adopt
561560
insert(

0 commit comments

Comments
 (0)
Please sign in to comment.