diff options
Diffstat (limited to 'server/sonar-web/src/main/js/api/projectLinks.ts')
-rw-r--r-- | server/sonar-web/src/main/js/api/projectLinks.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/api/projectLinks.ts b/server/sonar-web/src/main/js/api/projectLinks.ts index dfd87f2aa5c..c8ca2d71960 100644 --- a/server/sonar-web/src/main/js/api/projectLinks.ts +++ b/server/sonar-web/src/main/js/api/projectLinks.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 { getJSON, post, postJSON } from '../helpers/request'; +import { throwGlobalError } from '../sonar-aligned/helpers/error'; import { ProjectLink } from '../types/types'; export function getProjectLinks(projectKey: string): Promise<ProjectLink[]> { |