From dca8354af94e9feb46ea2312857e000aaa232372 Mon Sep 17 00:00:00 2001 From: philippe-perrin-sonarsource Date: Thu, 27 Jan 2022 11:06:59 +0100 Subject: SONAR-15945 Get rid of T namespace in sonar-web --- server/sonar-web/src/main/js/apps/projectsManagement/ProjectRow.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'server/sonar-web/src/main/js/apps/projectsManagement/ProjectRow.tsx') diff --git a/server/sonar-web/src/main/js/apps/projectsManagement/ProjectRow.tsx b/server/sonar-web/src/main/js/apps/projectsManagement/ProjectRow.tsx index 6bcb30683f8..0e603ac00da 100644 --- a/server/sonar-web/src/main/js/apps/projectsManagement/ProjectRow.tsx +++ b/server/sonar-web/src/main/js/apps/projectsManagement/ProjectRow.tsx @@ -26,11 +26,12 @@ import Tooltip from '../../components/controls/Tooltip'; import QualifierIcon from '../../components/icons/QualifierIcon'; import DateFormatter from '../../components/intl/DateFormatter'; import { getComponentOverviewUrl } from '../../helpers/urls'; +import { LoggedInUser } from '../../types/types'; import './ProjectRow.css'; import ProjectRowActions from './ProjectRowActions'; interface Props { - currentUser: Pick; + currentUser: Pick; onProjectCheck: (project: Project, checked: boolean) => void; project: Project; selected: boolean; -- cgit v1.2.3