-
Notifications
You must be signed in to change notification settings - Fork 9
Fix data region column name references #2526
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
Remove unnecessary logging parameters from CustomizeViewHelper Update CustomizeViewHelper to use FieldKey
|
ERROR: A pull request from |
labkey-danield
left a comment
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.
Several of the changes I'm taking at face value. If the test passes on TeamCity then I'm assuming it is good.
| * @return The data-recordid property of the <tr> element for the specified field in the "Available Fields" column tree. | ||
| */ | ||
| private WebElement expandPivots(String[] fieldKeyParts) | ||
| private WebElement expandPivots(CharSequence fieldIdentifier) |
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.
nit:
Maybe update the javadoc comment for the method to reference fieldIdentifier and not fieldKeyParts.
Rationale
My previous DataRegionTable refactor attempted to recreate the previous behavior that would remove spaces when matching field labels. I covered the case where the test passed in an unnecessary space but not when they omitted a space. Rather that duplicating that particular behavior, this updates the handful of tests that are passing incorrect field labels.
I've also updated the
CustomizeViewhelper to acceptFieldKeyobjects instead of String arrays.Related Pull Requests
Changes