mirror of
https://github.com/element-plus/element-plus.git
synced 2025-02-11 11:39:43 +08:00
fix(components): fix the problem that chrome 72 table doesnotdisplaydata (#10640)
Fix the problem that the chrome 72 tab table does not display data. This is caused by the fact that the extension operator becomes an empty object in a special scenario BREAKING CHANGE : The writing method of shallow copy is replaced closed #8770,#9071,#7038 Co-authored-by: btea <2356281422@qq.com>
This commit is contained in:
parent
9b75335c39
commit
7e81efd999
@ -79,7 +79,7 @@ function useRender<T>(props: Partial<TableBodyProps<T>>) {
|
||||
if (!rowspan || !colspan) {
|
||||
return null
|
||||
}
|
||||
const columnData = { ...column }
|
||||
const columnData = Object.assign({}, column)
|
||||
columnData.realWidth = getColspanRealWidth(
|
||||
columns.value,
|
||||
colspan,
|
||||
|
Loading…
Reference in New Issue
Block a user