Rename Status/Status -> Status/NodeStatus (#5332)

This commit is contained in:
Jaco Greeff 2017-03-29 16:31:33 +02:00 committed by GitHub
parent 858c974440
commit a4c433c749
5 changed files with 6 additions and 6 deletions

View File

@ -14,4 +14,4 @@
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>. // along with Parity. If not, see <http://www.gnu.org/licenses/>.
export default from './status'; export default from './nodeStatus';

View File

@ -25,9 +25,9 @@ import { Container, ContainerTitle, Input } from '~/ui';
import MiningSettings from '../MiningSettings'; import MiningSettings from '../MiningSettings';
import StatusStore from './store'; import StatusStore from './store';
import styles from './status.css'; import styles from './nodeStatus.css';
class Status extends Component { class NodeStatus extends Component {
static contextTypes = { static contextTypes = {
api: PropTypes.object.isRequired api: PropTypes.object.isRequired
}; };
@ -298,4 +298,4 @@ function mapStateToProps (state) {
export default connect( export default connect(
mapStateToProps, mapStateToProps,
null null
)(Status); )(NodeStatus);

View File

@ -21,7 +21,7 @@ import { Page } from '~/ui';
import Debug from './Debug'; import Debug from './Debug';
import Peers from './Peers'; import Peers from './Peers';
import Status from './Status'; import NodeStatus from './NodeStatus';
import styles from './status.css'; import styles from './status.css';
@ -35,7 +35,7 @@ export default () => (
} }
> >
<div className={ styles.body }> <div className={ styles.body }>
<Status /> <NodeStatus />
<Peers /> <Peers />
<Debug /> <Debug />
</div> </div>