-
Notifications
You must be signed in to change notification settings - Fork 77
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 config scope when binding changes #5241
Update config scope when binding changes #5241
Conversation
|
||
await configurationScopeService.DidAddConfigurationScopesAsync( | ||
new DidAddConfigurationScopesParams(new List<ConfigurationScopeDto> { configurationScopeDto })); | ||
if (currentConfigScope != null && currentConfigScope.id == id) |
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.
You can simplify if condition
if (currentConfigScope != null && currentConfigScope.id == id) | |
if (currentConfigScope?.id == id) |
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.
one small suggestion and change we talked offline
Quality Gate passedIssues Measures |
61fe405
into
feature/sloop-rule-meta-data
Part of #5240