-
-
Notifications
You must be signed in to change notification settings - Fork 362
Update AutoFill.razor.cs #6974
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
Update AutoFill.razor.cs #6974
Conversation
当初始化或选择选项后更新_clientValue
|
Thanks for your PR, @braia123. Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
Reviewer's guide (collapsed on small PRs)Reviewer's GuideSynchronize the internal _clientValue with the user-visible display text whenever component parameters are set (including initial render and option selection). Class diagram for updated AutoFill component state synchronizationclassDiagram
class AutoFill {
- string _displayText
- string _clientValue
+ OnParametersSet()
_displayText = GetDisplayText(Value)
_clientValue = _displayText
}
File-Level Changes
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.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #6974 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 741 741
Lines 32343 32344 +1
Branches 4481 4481
=========================================
+ Hits 32343 32344 +1
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:
|
当初始化或选择选项后更新_clientValue
Summary by Sourcery
Bug Fixes: