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

[core] Add missing babel-runtime dependency #6535

Merged
merged 1 commit into from
Apr 8, 2017
Merged

[core] Add missing babel-runtime dependency #6535

merged 1 commit into from
Apr 8, 2017

Conversation

oliviertassinari
Copy link
Member

  • PR has tests / docs demo, and is linted.
  • Commit and PR titles begin with [ComponentName], and are in imperative form: "[Component] Fix leaky abstraction".
  • Description explains the issue / use-case resolved, and auto-closes the related issue(s) (http://tr.im/vFqem).

@@ -93,7 +97,7 @@ export default class MenuList extends Component {

handleItemFocus = (event) => {
const list = findDOMNode(this.list);
if (list) {
if (list instanceof HTMLElement) {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -110,15 +114,22 @@ export default class MenuList extends Component {
return;
}

if (currentTabIndex && currentTabIndex >= 0) {
if (currentTabIndex && currentTabIndex >= 0 &&
// $FlowFixMe
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@muibot muibot added the PR: needs revision The pull request can't be merged. More details is available on the code review or fails in the CI label Apr 7, 2017
@oliviertassinari oliviertassinari added PR: Review Accepted and removed PR: Needs Review PR: needs revision The pull request can't be merged. More details is available on the code review or fails in the CI labels Apr 7, 2017
@muibot muibot added the PR: needs revision The pull request can't be merged. More details is available on the code review or fails in the CI label Apr 7, 2017
@oliviertassinari oliviertassinari removed the PR: needs revision The pull request can't be merged. More details is available on the code review or fails in the CI label Apr 7, 2017
@@ -85,15 +85,20 @@ export default class Menu extends Component {
const list = ReactDOM.findDOMNode(this.menuList);

if (this.menuList && this.menuList.selectedItem) {
// $FlowFixMe
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What are all these comments for?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For flow issues I don't have time to fix

@oliviertassinari oliviertassinari merged commit 072b45b into mui:next Apr 8, 2017
@oliviertassinari oliviertassinari deleted the next-babel-runtime branch April 8, 2017 09:50
@zannager zannager added the core Infrastructure work going on behind the scenes label Mar 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core Infrastructure work going on behind the scenes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants