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
From @indapublic on March 13, 2017 0:37
Code example:
render() { return this.props.data.weekDays.filter((weekDay, index) => (this.state.showAll || index < 3)).map((weekDay, key) => ( <p key={key}> {weekDay.label} {this.props.data[weekDay.id].start} - {this.props.data[weekDay.id].finish} </p> )) }
Highlight example:
If I will change index < 3 to 3 > index, all is fine
index < 3
3 > index
Copied from original issue: microsoft/vscode#22498
The text was updated successfully, but these errors were encountered:
From @kjnsn on March 13, 2017 6:1
Confirmed. I'll have a look into it!
Sorry, something went wrong.
Add test case for issue microsoft#430
4f6b857
d08a6ec
No branches or pull requests
From @indapublic on March 13, 2017 0:37
Code example:
Highlight example:
If I will change
index < 3
to3 > index
, all is fineCopied from original issue: microsoft/vscode#22498
The text was updated successfully, but these errors were encountered: