mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-23 00:22:19 +01:00
404 should render create link for toggles
This commit is contained in:
parent
02d4662693
commit
57ec329585
@ -1,6 +1,6 @@
|
|||||||
import React, { PropTypes } from 'react';
|
import React, { PropTypes } from 'react';
|
||||||
import { Tabs, Tab, ProgressBar } from 'react-mdl';
|
import { Tabs, Tab, ProgressBar } from 'react-mdl';
|
||||||
import { hashHistory } from 'react-router';
|
import { hashHistory, Link } from 'react-router';
|
||||||
|
|
||||||
import HistoryComponent from '../history/history-list-toggle-container';
|
import HistoryComponent from '../history/history-list-toggle-container';
|
||||||
import MetricComponent from './metric-container';
|
import MetricComponent from './metric-container';
|
||||||
@ -65,7 +65,9 @@ export default class ViewFeatureToggleComponent extends React.Component {
|
|||||||
if (features.length === 0 ) {
|
if (features.length === 0 ) {
|
||||||
return <ProgressBar indeterminate />;
|
return <ProgressBar indeterminate />;
|
||||||
}
|
}
|
||||||
return <span>Could not find the toggle "{featureToggleName}"</span>;
|
return (
|
||||||
|
<span>Could not find the toggle <Link to={{ pathname: '/features/create', query: { name: featureToggleName } }}>{featureToggleName}</Link></span>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const activeTabId = TABS[this.props.activeTab] ? TABS[this.props.activeTab] : TABS.view;
|
const activeTabId = TABS[this.props.activeTab] ? TABS[this.props.activeTab] : TABS.view;
|
||||||
|
Loading…
Reference in New Issue
Block a user