From 9559158bfeeb274e9ccf1b4563f1b23b42afc493 Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Wed, 5 Jul 2023 10:04:55 +0200 Subject: Decompose Kotlin/Java analysis (#3034) * Extract analysis into separate modules --- plugins/base/frontend/src/main/components/utils/requests.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/base/frontend/src/main/components/utils') diff --git a/plugins/base/frontend/src/main/components/utils/requests.tsx b/plugins/base/frontend/src/main/components/utils/requests.tsx index 4a14e6f6..c95dda69 100644 --- a/plugins/base/frontend/src/main/components/utils/requests.tsx +++ b/plugins/base/frontend/src/main/components/utils/requests.tsx @@ -1,7 +1,7 @@ -import { IWindow } from "../search/types" +import {IWindow} from "../search/types" export const relativizeUrlForRequest = (filePath: string) : string => { const pathToRoot = (window as IWindow).pathToRoot const relativePath = pathToRoot == "" ? "." : pathToRoot return relativePath.endsWith('/') ? `${relativePath}${filePath}` : `${relativePath}/${filePath}` -} \ No newline at end of file +} -- cgit