@douyinfe/semi-ui 2.41.1 → 2.41.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/umd/semi-ui.js
CHANGED
|
@@ -83355,6 +83355,9 @@ class Table extends BaseComponent {
|
|
|
83355
83355
|
if (Array.isArray(flattenColumns)) {
|
|
83356
83356
|
isFixed = flattenColumns.some(column => Boolean(column.ellipsis) || Boolean(column.fixed));
|
|
83357
83357
|
}
|
|
83358
|
+
if (this.adapter.useFixedHeader()) {
|
|
83359
|
+
isFixed = true;
|
|
83360
|
+
}
|
|
83358
83361
|
return isFixed ? 'fixed' : 'auto';
|
|
83359
83362
|
},
|
|
83360
83363
|
setHeadWidths: function (headWidths) {
|