1
0
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:
ivaosthu 2016-12-19 21:33:06 +01:00
parent 02d4662693
commit 57ec329585

View File

@ -1,6 +1,6 @@
import React, { PropTypes } from 'react';
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 MetricComponent from './metric-container';
@ -65,7 +65,9 @@ export default class ViewFeatureToggleComponent extends React.Component {
if (features.length === 0 ) {
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;