From ecd29c82952cf1c4c6d509f6d4080aca22d30b6e Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Tue, 19 Aug 2025 09:56:20 +0800 Subject: [PATCH 1/2] refactor: update index variable --- src/BootstrapBlazor/wwwroot/modules/utility.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor/wwwroot/modules/utility.js b/src/BootstrapBlazor/wwwroot/modules/utility.js index e01a94c81cc..025e6eda04a 100644 --- a/src/BootstrapBlazor/wwwroot/modules/utility.js +++ b/src/BootstrapBlazor/wwwroot/modules/utility.js @@ -670,7 +670,7 @@ export function isMobile() { const hashCode = str => { let hash = 0; for (let i = 0; i < str.length; i++) { - const char = str.charCodeAt(1); + const char = str.charCodeAt(i); hash = (hash << 5) - hash + char; hash |= 0; } From a8e70f8e9eb556229e24d8ab8b3d9bcc38a38e5d Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Tue, 19 Aug 2025 09:56:40 +0800 Subject: [PATCH 2/2] chore: bump version 9.9.3-beta01 --- src/BootstrapBlazor/BootstrapBlazor.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BootstrapBlazor/BootstrapBlazor.csproj b/src/BootstrapBlazor/BootstrapBlazor.csproj index 31cd068303b..2d100b888dd 100644 --- a/src/BootstrapBlazor/BootstrapBlazor.csproj +++ b/src/BootstrapBlazor/BootstrapBlazor.csproj @@ -1,7 +1,7 @@  - 9.9.2 + 9.9.3-beta01