From: Wouter Admiraal Date: Thu, 19 Aug 2021 07:32:44 +0000 (+0200) Subject: SONAR-15297 Remove dependency on sonar-ui-common for core-extension-license X-Git-Tag: 9.1.0.47736~112 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7f148ece2ccbb6d302710368bcdde040c8836c42;p=sonarqube.git SONAR-15297 Remove dependency on sonar-ui-common for core-extension-license --- diff --git a/server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts b/server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts index 7a71aed8fbf..095c68e3fdf 100644 --- a/server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts +++ b/server/sonar-web/src/main/js/app/components/extensions/exposeLibraries.ts @@ -87,6 +87,8 @@ import { Alert } from '../../../sonar-ui-common/components/ui/Alert'; import DeferredSpinner from '../../../sonar-ui-common/components/ui/DeferredSpinner'; import DuplicationsRating from '../../../sonar-ui-common/components/ui/DuplicationsRating'; import Level from '../../../sonar-ui-common/components/ui/Level'; +import MandatoryFieldMarker from '../../../sonar-ui-common/components/ui/MandatoryFieldMarker'; +import MandatoryFieldsExplanation from '../../../sonar-ui-common/components/ui/MandatoryFieldsExplanation'; import Rating from '../../../sonar-ui-common/components/ui/Rating'; import { translate, translateWithParameters } from '../../../sonar-ui-common/helpers/l10n'; import { formatMeasure } from '../../../sonar-ui-common/helpers/measures'; @@ -94,6 +96,8 @@ import { get, getJSON, getText, + omitNil, + parseError, post, postJSON, postJSONBody, @@ -112,6 +116,8 @@ const exposeLibraries = () => { get, getJSON, getText, + omitNil, + parseError, post, postJSON, postJSONBody, @@ -196,6 +202,8 @@ const exposeLibraries = () => { ListFooter, LockIcon, LongLivingBranchIcon: BranchIcon, + MandatoryFieldMarker, + MandatoryFieldsExplanation, Modal, NotFound, PlusCircleIcon,