-
Notifications
You must be signed in to change notification settings - Fork 10.3k
[QuickGrid] ColumnBase align check uses incorrect logical operator. #47857
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
area-blazor
Includes: Blazor, Razor Components
bug
This issue describes a behavior which is not expected - a bug.
feature-blazor-quickgrid
Milestone
Comments
Good catch @Drake53. Are you interested in contributing a fix? |
I'd have to fork & clone the entire aspnetcore repo in order to create a PR, seems like a lot of effort for such a small fix so I'd appreciate it if someone else could create a PR for this. |
@Drake53 No worries at all! Just wanted to check before someone else did it in case you were hoping to 😄 |
dotnet-bot
pushed a commit
to dotnet/dotnet
that referenced
this issue
May 3, 2023
Diff: https://github.com/dotnet/aspnetcore/compare/015ceab6aeec700fbfb71cdfe9ff8fb51831d555..42d14c4bab2afb8cddc1f9683aa8ff2e20a46edb From: dotnet/aspnetcore@015ceab To: dotnet/aspnetcore@42d14c4 Commits: - Update dependencies from https://github.com/dotnet/runtime build 20230426.2 (#47904) dotnet/aspnetcore@cc54ac3 - Replace ISystemClock in SignalR (#47895) dotnet/aspnetcore@69e3a5d - Fixed Router renders component twice (#47880) dotnet/aspnetcore@b07544b - Fixing dotnet/aspnetcore#47857 (#47886) dotnet/aspnetcore@509ba52 - Add suppression message to JSON serialization (#47908) dotnet/aspnetcore@e821f20 - RDG metadata generation based on endpoint response type. (#47741) dotnet/aspnetcore@fb278a6 - [GenerateEmbeddedResourcesManifest] handle Items with empty LogicalName #29306 (#47887) dotnet/aspnetcore@2dbc828 - Fixes CI build failures after conflicting merge affecting RDG baselines. (#47917) dotnet/aspnetcore@58940e3 - Quarantine BlazorWasmHostedTemplate_IndividualAuth_NoHttps_Works_WithOutLocalDB (#47920) dotnet/aspnetcore@d9b3951 - Update dependencies from https://github.com/dotnet/runtime build 20230427.1 (#47921) dotnet/aspnetcore@b0917f4 - Fix F# starter web template. (#47697) dotnet/aspnetcore@0db29cc - Add MapIdentityApi<TUser>() (#47414) dotnet/aspnetcore@d4430f0 - Enable prebuilt detection (#47894) dotnet/aspnetcore@6d30638 - Localized file check-in by OneLocBuild Task: Build definition ID 1159: Build ID 2168950 (#47784) dotnet/aspnetcore@c3b9515 - Add comment about SourceBuildPrebuilt versions (#47935) dotnet/aspnetcore@e233a32 - Update SDK to 8.0.100-preview.5.23226.2 (#47540) dotnet/aspnetcore@1b78513 - Remove unused variable (#47931) dotnet/aspnetcore@ab1bfa7 - Enable AOT template tests (#47247) dotnet/aspnetcore@c6ccf23 - Update dependencies from https://github.com/dotnet/runtime build 20230428.1 (#47956) dotnet/aspnetcore@64e4c50 - Remove support for name attribute when hash routing (#47954) dotnet/aspnetcore@1e39822 [... commit list trimmed ...] [[ commit created by automation ]]
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
area-blazor
Includes: Blazor, Razor Components
bug
This issue describes a behavior which is not expected - a bug.
feature-blazor-quickgrid
Is there an existing issue for this?
Describe the bug
In https://github.com/dotnet/aspnetcore/blob/main/src/Components/QuickGrid/Microsoft.AspNetCore.Components.QuickGrid/src/Columns/ColumnBase.razor
The following line
@if (ColumnOptions is not null && (Align != Align.Right || Align != Align.End))
should be:
@if (ColumnOptions is not null && (Align != Align.Right && Align != Align.End))
Expected Behavior
No response
Steps To Reproduce
No response
Exceptions (if any)
No response
.NET Version
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: