Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR cleans up the Dashboard razor components by normalizing namespace directives (removing hidden BOM characters) and converting the Console component in TaskInfo.razor from a self-closing tag to an explicit open/close form, supporting the v10.0.0 release and resolving issue #692. Class diagram for updated TaskInfo and TaskDashboard componentsclassDiagram
class TaskInfo {
+Messages : IEnumerable<string>
+HeaderText : string
+Console : BootstrapBlazor.Components.Console
}
class TaskDashboard {
+AdditionalAttributes : IDictionary<string, object>
+ClassString : string
}
TaskInfo --> "1" Console : uses
TaskDashboard --> "1" BootstrapComponentBase : inherits
File-Level Changes
Assessment against linked issues
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Pull Request Overview
This PR performs code cleanup on the Dashboard component by removing BOM (Byte Order Mark) characters and standardizing tag formatting. Despite the title indicating a version bump, the actual version change appears to have occurred elsewhere - this PR only contains formatting improvements to Razor files.
Key Changes:
- Removed BOM characters from Razor component files
- Changed Console component from self-closing to explicit closing tag syntax
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| TaskInfo.razor | Removed BOM character and changed Console component to use explicit closing tag instead of self-closing syntax |
| TaskDashboard.razor | Removed BOM character from the file header |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Link issues
fixes #692
Summary By Copilot
Regression?
Risk
Verification
Packaging changes reviewed?
☑️ Self Check before Merge
Summary by Sourcery
Bump the BootstrapBlazor.Tasks.Dashboard package to version 10.0.0 and clean up Razor component markup by removing BOM artifacts and standardizing component tags.
Enhancements:
Chores: