diff --git a/src/table/Ellipsis.tsx b/src/table/Ellipsis.tsx
index 6810acbd9b..2f7893168d 100644
--- a/src/table/Ellipsis.tsx
+++ b/src/table/Ellipsis.tsx
@@ -46,7 +46,7 @@ export default function Ellipsis(props: EllipsisProps) {
e.type === 'mouseleave' ? onTriggerMouseleave() : onTriggerMouseenter();
}, 80);
- const cellNode = props.children || props.content;
+ const cellNode = props.content || props.children;
const ellipsisContent = (
{cellNode}
diff --git a/test/snap/__snapshots__/csr.test.jsx.snap b/test/snap/__snapshots__/csr.test.jsx.snap
index db9f6d466a..89ba5c753e 100644
--- a/test/snap/__snapshots__/csr.test.jsx.snap
+++ b/test/snap/__snapshots__/csr.test.jsx.snap
@@ -112766,7 +112766,9 @@ exports[`csr snapshot test > csr test src/table/_example/tree.tsx 1`] = `
>
+ >
+ 0
+
ssr test src/table/_example/single-sort.tsx 1`] = `
exports[`ssr snapshot test > ssr test src/table/_example/style.tsx 1`] = `"贾明 | | 2 | 电子签署 | w.cezkdudy@lhll.au | 2022-01-01 | 张三 | | 10 | 纸质签署 | r.nmgw@peurezgn.sl | 2022-02-01 | 王芳 | | 1 | 纸质签署 | p.cumx@rampblpa.ru | 2022-03-01 | 贾明 | | 2 | 电子签署 | w.cezkdudy@lhll.au | 2022-04-01 | 张三 | | 10 | 纸质签署 | r.nmgw@peurezgn.sl | 2022-01-01 |
"`;
-exports[`ssr snapshot test > ssr test src/table/_example/tree.tsx 1`] = `" | | | 电子签署 | | | 1 | | 纸质签署 | | | 2 | | 电子签署 | | | 3 | | 纸质签署 | | | 4 | | 电子签署 | | | 66666 | | 电子签署 | | | 88888 | | 电子签署 | |
"`;
+exports[`ssr snapshot test > ssr test src/table/_example/tree.tsx 1`] = `" | 0 | | 电子签署 | | | 1 | | 纸质签署 | | | 2 | | 电子签署 | | | 3 | | 纸质签署 | | | 4 | | 电子签署 | | | 66666 | | 电子签署 | | | 88888 | | 电子签署 | |
"`;
exports[`ssr snapshot test > ssr test src/table/_example/tree-select.tsx 1`] = `""`;
diff --git a/test/snap/__snapshots__/ssr.test.jsx.snap b/test/snap/__snapshots__/ssr.test.jsx.snap
index 513129dc5d..2069359111 100644
--- a/test/snap/__snapshots__/ssr.test.jsx.snap
+++ b/test/snap/__snapshots__/ssr.test.jsx.snap
@@ -1006,7 +1006,7 @@ exports[`ssr snapshot test > ssr test src/table/_example/single-sort.tsx 1`] = `
exports[`ssr snapshot test > ssr test src/table/_example/style.tsx 1`] = `"贾明 | | 2 | 电子签署 | w.cezkdudy@lhll.au | 2022-01-01 | 张三 | | 10 | 纸质签署 | r.nmgw@peurezgn.sl | 2022-02-01 | 王芳 | | 1 | 纸质签署 | p.cumx@rampblpa.ru | 2022-03-01 | 贾明 | | 2 | 电子签署 | w.cezkdudy@lhll.au | 2022-04-01 | 张三 | | 10 | 纸质签署 | r.nmgw@peurezgn.sl | 2022-01-01 |
"`;
-exports[`ssr snapshot test > ssr test src/table/_example/tree.tsx 1`] = `" | | | 电子签署 | | | 1 | | 纸质签署 | | | 2 | | 电子签署 | | | 3 | | 纸质签署 | | | 4 | | 电子签署 | | | 66666 | | 电子签署 | | | 88888 | | 电子签署 | |
"`;
+exports[`ssr snapshot test > ssr test src/table/_example/tree.tsx 1`] = `" | 0 | | 电子签署 | | | 1 | | 纸质签署 | | | 2 | | 电子签署 | | | 3 | | 纸质签署 | | | 4 | | 电子签署 | | | 66666 | | 电子签署 | | | 88888 | | 电子签署 | |
"`;
exports[`ssr snapshot test > ssr test src/table/_example/tree-select.tsx 1`] = `""`;
|