diff options
author | Viktor Vorona <viktor.vorona@sonarsource.com> | 2024-04-23 11:39:08 +0200 |
---|---|---|
committer | Matteo Mara <matteo.mara@sonarsource.com> | 2024-04-30 10:59:03 +0200 |
commit | 5c472713af0075201739c2e50663eefa01464fd6 (patch) | |
tree | dfef7ae740f744137c97e952906dbe96c8e6f0a7 /server/sonar-web/src/main/js/api/alm-integrations.ts | |
parent | b1926c0127b9765afd449c90f415027a4341caad (diff) | |
download | sonarqube-5c472713af0075201739c2e50663eefa01464fd6.tar.gz sonarqube-5c472713af0075201739c2e50663eefa01464fd6.zip |
SONAR-22049 Align throwGlobalError
Diffstat (limited to 'server/sonar-web/src/main/js/api/alm-integrations.ts')
-rw-r--r-- | server/sonar-web/src/main/js/api/alm-integrations.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/api/alm-integrations.ts b/server/sonar-web/src/main/js/api/alm-integrations.ts index f7f6d92b086..a2a350eb073 100644 --- a/server/sonar-web/src/main/js/api/alm-integrations.ts +++ b/server/sonar-web/src/main/js/api/alm-integrations.ts @@ -17,8 +17,8 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -import { throwGlobalError } from '../helpers/error'; import { get, getJSON, parseError, post, postJSON } from '../helpers/request'; +import { throwGlobalError } from '../sonar-aligned/helpers/error'; import { AzureProject, AzureRepository, |