-
Notifications
You must be signed in to change notification settings - Fork 7
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
Feat(revit): CNX-543 category filter #373
Feat(revit): CNX-543 category filter #373
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev #373 +/- ##
=====================================
Coverage 8.39% 8.40%
=====================================
Files 238 237 -1
Lines 4692 4690 -2
Branches 512 512
=====================================
Hits 394 394
+ Misses 4282 4280 -2
Partials 16 16 ☔ View full report in Codecov by Sentry. |
@@ -17,6 +18,9 @@ public async Task RefreshSendFilters() => | |||
public async Task SetModelsExpired(IEnumerable<string> expiredModelIds) => | |||
await Bridge.Send(SET_MODELS_EXPIRED_UI_COMMAND_NAME, expiredModelIds).ConfigureAwait(false); | |||
|
|||
public async Task SetFilterObjectIds<T>(string modelCardId, T idMap) => |
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.
T
generic arg could be replaced with object
public override List<string> GetObjectIds() => SelectedObjectIds; | ||
public override List<string> RefreshObjectIds() | ||
{ | ||
ObjectIds = SelectedObjectIds; // We know it is bad, it is for backward compatibility! |
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.
Can we use SelectedObjectIds
everywhere instead? add on the ISendFilter.
I don't think the name will be confusing,
No description provided.