aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/projectBranches/components/LeakPeriodForm.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/projectBranches/components/LeakPeriodForm.tsx')
-rw-r--r--server/sonar-web/src/main/js/apps/projectBranches/components/LeakPeriodForm.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/projectBranches/components/LeakPeriodForm.tsx b/server/sonar-web/src/main/js/apps/projectBranches/components/LeakPeriodForm.tsx
index ebfc5e35072..3104fb7af2e 100644
--- a/server/sonar-web/src/main/js/apps/projectBranches/components/LeakPeriodForm.tsx
+++ b/server/sonar-web/src/main/js/apps/projectBranches/components/LeakPeriodForm.tsx
@@ -22,7 +22,6 @@ import SettingForm from './SettingForm';
import { translate } from '../../../helpers/l10n';
import { getValues } from '../../../api/settings';
import Modal from '../../../components/controls/Modal';
-import { SettingValue } from '../../../app/types';
interface Props {
branch: string;
@@ -32,7 +31,7 @@ interface Props {
interface State {
loading: boolean;
- setting?: SettingValue;
+ setting?: T.SettingValue;
submitting: boolean;
value?: string;
}