mirror of
https://github.com/dotnetcore/BootstrapBlazor.git
synced 2025-12-20 02:16:40 +08:00
refactor(DockView): support multiple custom class (#3866)
* fix: 修复报告页面不显示 * chore: bump version 8.0.5 * fix: 修复点击收起列表里的tab时index不同步的问题 * chore: bump version 8.0.6 --------- Co-authored-by: zhaijunlei <276318515@qq.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||
|
||||
<PropertyGroup>
|
||||
<Version>8.0.4</Version>
|
||||
<Version>8.0.6</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
|
||||
@@ -21,7 +21,9 @@
|
||||
tab._content.style.width = `${titleWidth}px`;
|
||||
}
|
||||
if (panelClass) {
|
||||
content.element.classList.add(panelClass);
|
||||
panelClass.split(' ').forEach(className => {
|
||||
content.element.classList.add(className);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user