Skip to content
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

Translation fixes for 8.5.0 #544

Merged
merged 6 commits into from May 5, 2020
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Change caret orientation

  • Loading branch information
benstrumeyer committed May 5, 2020
commit fa69d80d1486a3c2987690fbea82dd55632ce75c
@@ -161,8 +161,8 @@ class Category extends React.Component {
const { isExpanded } = this.state;
const { isUnknown } = this.props;
const caretClasses = ClassNames(this.context, {
'caret-down': isExpanded,
'caret-up': !isExpanded,
'caret-down': !isExpanded,
'caret-up': isExpanded,
Category__antiTrackingCaret: isUnknown
});
return (
ProTip! Use n and p to navigate between commits in a pull request.