-
-
Notifications
You must be signed in to change notification settings - Fork 362
feat(MindMap): bump version 9.1.7 #6883
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
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR enhances the MindMap sample by adding console logging for click events and updates the server project version to 9.1.7. Sequence diagram for MindMap click event logging enhancementsequenceDiagram
participant User
participant MindMapComponent
participant BrowserConsole
User->>MindMapComponent: Clicks on MindMap node
MindMapComponent->>BrowserConsole: console.log(args)
Class diagram for MindMap JavaScript callback modificationclassDiagram
class MindMap {
callbacks: object
}
MindMap : clickCustom(args)
MindMap : +console.log(args)
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the BootstrapBlazor.MindMap package version from 9.1.6 to 9.1.7 and adds debug logging to the MindMap callback function.
- Updated BootstrapBlazor.MindMap package reference to version 9.1.7
- Added console.log statement to the clickCustom callback function for debugging purposes
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj | Updates MindMap package version to 9.1.7 |
| src/BootstrapBlazor.Server/Components/Samples/MindMaps.razor.js | Adds console logging to clickCustom callback function |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| callbacks: { | ||
| clickCustom: function (args) { | ||
|
|
||
| console.log(args); |
Copilot
AI
Oct 12, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Debug console.log statement should be removed before production deployment or replaced with a proper logging mechanism that can be configured/disabled.
| console.log(args); | |
| // Debug logging removed for production |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #6883 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 739 739
Lines 31765 31765
Branches 4466 4466
=========================================
Hits 31765 31765
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Link issues
fixes #6882
Summary By Copilot
Regression?
Risk
Verification
Packaging changes reviewed?
☑️ Self Check before Merge
Summary by Sourcery
Bump MindMap component to version 9.1.7, fix the reported issue, and introduce logging in the clickCustom callback
New Features:
Bug Fixes:
Build: