diff options
Diffstat (limited to 'gui-clamp/ui-react/src/components/dialogs/ControlLoop/DeleteToscaTemplate.js')
-rw-r--r-- | gui-clamp/ui-react/src/components/dialogs/ControlLoop/DeleteToscaTemplate.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gui-clamp/ui-react/src/components/dialogs/ControlLoop/DeleteToscaTemplate.js b/gui-clamp/ui-react/src/components/dialogs/ControlLoop/DeleteToscaTemplate.js index c641272..7968fe2 100644 --- a/gui-clamp/ui-react/src/components/dialogs/ControlLoop/DeleteToscaTemplate.js +++ b/gui-clamp/ui-react/src/components/dialogs/ControlLoop/DeleteToscaTemplate.js @@ -24,13 +24,10 @@ import ControlLoopService from "../../../api/ControlLoopService"; const DeleteToscaTemplate = props => { - const [windowLocationPathName, setWindowLocationPathname] = useState(''); - const deleteTemplateHandler = async () => { console.log('deleteTemplateHandler called'); - setWindowLocationPathname(window.location.pathname); - const response = await ControlLoopService.deleteToscaTemplate(props.templateName, props.templateVersion, windowLocationPathName) + const response = await ControlLoopService.deleteToscaTemplate(props.templateName, props.templateVersion) .catch(error => error.message); console.log('Response is ok: ' + response.ok); |