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 f13a950 commit 083ba71Copy full SHA for 083ba71
src/BootstrapBlazor/BootstrapBlazor.csproj
@@ -1,7 +1,7 @@
1
<Project Sdk="Microsoft.NET.Sdk.Razor">
2
3
<PropertyGroup>
4
- <Version>9.9.2</Version>
+ <Version>9.9.3-beta01</Version>
5
</PropertyGroup>
6
7
<ItemGroup>
src/BootstrapBlazor/wwwroot/modules/utility.js
@@ -670,7 +670,7 @@ export function isMobile() {
670
const hashCode = str => {
671
let hash = 0;
672
for (let i = 0; i < str.length; i++) {
673
- const char = str.charCodeAt(1);
+ const char = str.charCodeAt(i);
674
hash = (hash << 5) - hash + char;
675
hash |= 0;
676
}
0 commit comments