From 9ef34e3e216c7c92d74b6998a1b7882f0ab66607 Mon Sep 17 00:00:00 2001 From: Zoltan Runyo <zoltan.runyo@ess.eu> Date: Fri, 1 Oct 2021 15:32:36 +0200 Subject: [PATCH] ICSHWI-8009: Fix typo --- src/api/SwaggerApi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/SwaggerApi.js b/src/api/SwaggerApi.js index a070abe4..b19bcee0 100644 --- a/src/api/SwaggerApi.js +++ b/src/api/SwaggerApi.js @@ -329,7 +329,7 @@ export function unpackHostIOCList(iocs) { export function useHostIOCList(id) { const api = useContext(apiContext); - const method = callAndUnpack(api.apis.Hosts.findAssociatedIocsByHosId, unpackHostIOCList) + const method = callAndUnpack(api.apis.Hosts.findAssociatedIocsByHostId, unpackHostIOCList) return useAsync({ fcn: method.bind(null, { hostCSEntryId: id }), init: { deployed: [], undeployed: [] } }); } -- GitLab