We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
.length() is not returning the number of groups within tag
As above (node-ethernet-ip/src/tag-group/index.js)
Length of group should be returned
Change (Line 31) return Object.keys(this.tags).length; to return Object.keys(this.state.tags).length;
return Object.keys(this.tags).length;
return Object.keys(this.state.tags).length;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
.length() is not returning the number of groups within tag
Current Behavior
As above (node-ethernet-ip/src/tag-group/index.js)
Expected Behavior
Length of group should be returned
Possible Solution (Optional)
Change (Line 31)
return Object.keys(this.tags).length;
toreturn Object.keys(this.state.tags).length;
The text was updated successfully, but these errors were encountered: