-
Notifications
You must be signed in to change notification settings - Fork 13
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
feature (tekla): extract user-defined attributes #566
feature (tekla): extract user-defined attributes #566
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #566 +/- ##
=====================================
Coverage 8.54% 8.54%
=====================================
Files 229 229
Lines 4365 4365
Branches 552 552
=====================================
Hits 373 373
Misses 3977 3977
Partials 15 15 ☔ View full report in Codecov by Sentry. |
|
||
if (propertyName != null) | ||
{ | ||
var reportProperty = new Dictionary<string, object?> { ["name"] = propertyName, ["value"] = propertyValue }; |
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.
these should be entries in the userProperties
dictionary, not single entry dictionaries
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.
right, it looks cleaner now. pushed.
user-defined attributes was requested a couple of times. added to property extractor.