diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/groups/components/Form.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/groups/components/Form.tsx | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/server/sonar-web/src/main/js/apps/groups/components/Form.tsx b/server/sonar-web/src/main/js/apps/groups/components/Form.tsx index 978b7ce181f..2796e308e59 100644 --- a/server/sonar-web/src/main/js/apps/groups/components/Form.tsx +++ b/server/sonar-web/src/main/js/apps/groups/components/Form.tsx @@ -18,12 +18,15 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import * as React from 'react'; -import { ResetButtonLink, SubmitButton } from 'sonar-ui-common/components/controls/buttons'; -import SimpleModal from 'sonar-ui-common/components/controls/SimpleModal'; -import DeferredSpinner from 'sonar-ui-common/components/ui/DeferredSpinner'; -import MandatoryFieldMarker from 'sonar-ui-common/components/ui/MandatoryFieldMarker'; -import MandatoryFieldsExplanation from 'sonar-ui-common/components/ui/MandatoryFieldsExplanation'; -import { translate } from 'sonar-ui-common/helpers/l10n'; +import { + ResetButtonLink, + SubmitButton +} from '../../../sonar-ui-common/components/controls/buttons'; +import SimpleModal from '../../../sonar-ui-common/components/controls/SimpleModal'; +import DeferredSpinner from '../../../sonar-ui-common/components/ui/DeferredSpinner'; +import MandatoryFieldMarker from '../../../sonar-ui-common/components/ui/MandatoryFieldMarker'; +import MandatoryFieldsExplanation from '../../../sonar-ui-common/components/ui/MandatoryFieldsExplanation'; +import { translate } from '../../../sonar-ui-common/helpers/l10n'; interface Props { confirmButtonText: string; |