From 419297128ce2ab2c8085c81fafdb843c1135661d Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Wed, 14 Sep 2022 13:49:58 +0200 Subject: fix(web/ui): Fix deletion of topology This change fixes an issue with the OpenDC web interface where the user cannot remove an existing topology from the topology table due to a programming mistake. --- opendc-web/opendc-web-ui/src/data/topology.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'opendc-web/opendc-web-ui/src/data') diff --git a/opendc-web/opendc-web-ui/src/data/topology.js b/opendc-web/opendc-web-ui/src/data/topology.js index cf098c56..ac6cabe5 100644 --- a/opendc-web/opendc-web-ui/src/data/topology.js +++ b/opendc-web/opendc-web-ui/src/data/topology.js @@ -49,7 +49,7 @@ export function configureTopologyClient(queryClient, auth) { }, }) queryClient.setMutationDefaults('deleteTopology', { - mutationFn: ({ projectId, id }) => deleteTopology(auth, projectId, id), + mutationFn: ({ projectId, number }) => deleteTopology(auth, projectId, number), onSuccess: (result) => { queryClient.setQueryData(['topologies', result.project.id], (old = []) => old.filter((topology) => topology.id !== result.id) -- cgit v1.2.3