Delete archaic component and copy
parent
f10db6d3da
commit
d183b65f9f
|
@ -1,18 +0,0 @@
|
|||
import React from 'react';
|
||||
import ClusterError from 'shared/components/ClusterError';
|
||||
import PanelHeading from 'shared/components/PanelHeading';
|
||||
import PanelBody from 'shared/components/PanelBody';
|
||||
import errorCopy from 'hson!shared/copy/errors.hson';
|
||||
|
||||
const NoDataNodeError = React.createClass({
|
||||
render() {
|
||||
return (
|
||||
<ClusterError>
|
||||
<PanelHeading>{errorCopy.noData.head}</PanelHeading>
|
||||
<PanelBody>{errorCopy.noData.body}</PanelBody>
|
||||
</ClusterError>
|
||||
);
|
||||
},
|
||||
});
|
||||
|
||||
export default NoDataNodeError;
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
noData: {
|
||||
head: `Unable to find a data node!`,
|
||||
body: `Make sure your cluster is configured correctly by verifying that at least one valid data node is part of your cluster.`,
|
||||
},
|
||||
noCluster: {
|
||||
head: `Unable to communicate with cluster!`,
|
||||
body: `Make sure your cluster is configured correctly by verifying that at least one valid meta and data node is part of your cluster.`,
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue