diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/marketplace/Search.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/marketplace/Search.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/marketplace/Search.tsx b/server/sonar-web/src/main/js/apps/marketplace/Search.tsx index 38bbc98b8f4..2d7a885cdfc 100644 --- a/server/sonar-web/src/main/js/apps/marketplace/Search.tsx +++ b/server/sonar-web/src/main/js/apps/marketplace/Search.tsx @@ -18,10 +18,10 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import * as React from 'react'; +import { translate } from 'sonar-ui-common/helpers/l10n'; +import SearchBox from 'sonar-ui-common/components/controls/SearchBox'; +import RadioToggle from 'sonar-ui-common/components/controls/RadioToggle'; import { Query } from './utils'; -import RadioToggle from '../../components/controls/RadioToggle'; -import SearchBox from '../../components/controls/SearchBox'; -import { translate } from '../../helpers/l10n'; interface Props { query: Query; |