Fix remove container callback.
continuous-integration/drone/push Build is failing Details

master
Thomas Bellembois 2 years ago
parent b5b20fa446
commit d96be0bca9

@ -184,8 +184,8 @@ function getContainerLogError(response: string) {
console.log(response);
}
function removeContainerSuccess(containerName: string) {
const containerDiv = document.getElementById(`container${containerName}`);
function removeContainerSuccess(containerId: string) {
const containerDiv = document.getElementById(`${containerId}`);
if (containerDiv !== null) {
containerDiv.remove();

Loading…
Cancel
Save