From ef0fe323b1fd36fea2c1b62938dea50c43f83fcc Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 30 Jan 2025 09:15:12 +0100 Subject: [PATCH] Bug 38993: Use the @fetch alias Signed-off-by: Paul Derscheid Signed-off-by: Martin Renvoize --- .../prog/js/vue/fetch/api-client.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/fetch/api-client.js b/koha-tmpl/intranet-tmpl/prog/js/vue/fetch/api-client.js index bda3763d838..c12f54beebf 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/fetch/api-client.js +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/fetch/api-client.js @@ -1,14 +1,14 @@ import HttpClient from "./http-client"; -import ERMAPIClient from "./../../fetch/erm-api-client"; -import PatronAPIClient from "./../../fetch/patron-api-client"; -import AcquisitionAPIClient from "./../../fetch/acquisition-api-client"; -import AdditionalFieldsAPIClient from "./../../fetch/additional-fields-api-client"; -import AVAPIClient from "./../../fetch/authorised-values-api-client"; -import ItemAPIClient from "./../../fetch/item-api-client"; -import RecordSourcesAPIClient from "./../../fetch/record-sources-api-client"; -import SysprefAPIClient from "./../../fetch/system-preferences-api-client"; -import PreservationAPIClient from "./../../fetch/preservation-api-client"; +import ERMAPIClient from "@fetch/erm-api-client"; +import PatronAPIClient from "@fetch/patron-api-client"; +import AcquisitionAPIClient from "@fetch/acquisition-api-client"; +import AdditionalFieldsAPIClient from "@fetch/additional-fields-api-client"; +import AVAPIClient from "@fetch/authorised-values-api-client"; +import ItemAPIClient from "@fetch/item-api-client"; +import RecordSourcesAPIClient from "@fetch/record-sources-api-client"; +import SysprefAPIClient from "@fetch/system-preferences-api-client"; +import PreservationAPIClient from "@fetch/preservation-api-client"; export const APIClient = { erm: new ERMAPIClient(HttpClient), -- 2.48.1