We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1ec468 commit 41abea9Copy full SHA for 41abea9
src/BootstrapBlazor/BootstrapBlazor.csproj
@@ -1,7 +1,7 @@
1
<Project Sdk="Microsoft.NET.Sdk.Razor">
2
3
<PropertyGroup>
4
- <Version>10.5.0-beta02</Version>
+ <Version>10.5.0-beta04</Version>
5
</PropertyGroup>
6
7
<ItemGroup>
src/BootstrapBlazor/Components/Table/Table.razor.js
@@ -677,7 +677,7 @@ const setResizeListener = table => {
677
const rows = [...tbody.children].filter(i => i.nodeName === 'TR');
678
rows.forEach(row => {
679
const header = row.children.item(colIndex);
680
- if (header.classList.contains('fixed')) {
+ if (header !== null && header.classList.contains('fixed')) {
681
resizeNextFixedColumnWidth(header, calcColWidth);
682
}
683
});
0 commit comments