From 60226e8e297485bcbe384dc766930da0a5a1c079 Mon Sep 17 00:00:00 2001 From: Grégoire Aubert <gregoire.aubert@sonarsource.com> Date: Thu, 11 Jul 2019 15:15:35 +0200 Subject: SC-704 Extract components into sonar-ui-common (#1714) * SC-704 Extract icons components to sonar-ui-common * Better typings for theme * Use sonar-ui-common in extensions * Extract some helpers * Extract l10n helper to sonar-ui-common * Extract requests helper to sonar-ui-common * Extract part of urls helper * Move buttons, Tooltips and ScreenPositionFixers * Move modal related components * Move IdentityProviderLink * Move GenericAvatar * Move SizeRating * Move charts and move deps to peerDeps * Move nav * Move formatMeasure * Move Rating * Move PageActions * Move the rest of ui components * Move more controls components * Include theme inside extension build * Add missing theme context provider in extensions * Update react to same version everywhere * Update sonar-ui-common * Update eslint configuration --- server/sonar-web/src/main/js/apps/projects/query.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'server/sonar-web/src/main/js/apps/projects/query.ts') diff --git a/server/sonar-web/src/main/js/apps/projects/query.ts b/server/sonar-web/src/main/js/apps/projects/query.ts index 33adc5cd096..36831063b2d 100644 --- a/server/sonar-web/src/main/js/apps/projects/query.ts +++ b/server/sonar-web/src/main/js/apps/projects/query.ts @@ -18,7 +18,6 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import { VISUALIZATIONS } from './utils'; -import { RawQuery } from '../../helpers/query'; type Level = 'ERROR' | 'WARN' | 'OK'; @@ -45,7 +44,7 @@ export interface Query { [x: string]: string | number | string[] | undefined; } -export function parseUrlQuery(urlQuery: RawQuery): Query { +export function parseUrlQuery(urlQuery: T.RawQuery): Query { return { gate: getAsLevel(urlQuery['gate']), reliability: getAsNumericRating(urlQuery['reliability']), -- cgit v1.2.3