-
-
Notifications
You must be signed in to change notification settings - Fork 32.7k
Closed
Labels
scope: tabsChanges related to the tabs.Changes related to the tabs.
Description
Problem Description
I have a simple tab control that is emitting a  character with no obvious reason why. The character disappears depending on what kind of content is in the tab. Adding multiple tabs causes the character to be carried with the highlighter for which tab is selected. I'm using babel to transpile, but the output seems harmless.
app.jsx:
import React from "react";
import ReactDOM from "react-dom";
import injectTapEventPlugin from 'react-tap-event-plugin';
injectTapEventPlugin();
import Tabs from 'material-ui/lib/tabs/tabs';
import Tab from 'material-ui/lib/tabs/tab';
var temp = (
<Tabs>
<Tab label="test">
<p>Hello world</p>
</Tab>
</Tabs>
);
ReactDOM.render(temp, document.getElementById("app"));I've included the output html as well, you can see the character getting inserted with a div:
output.txt
Versions
- Material-UI: 0.14.4
- React: 0.14.7
- Browser: Latest chrome & firefox
Metadata
Metadata
Assignees
Labels
scope: tabsChanges related to the tabs.Changes related to the tabs.
