missing editor destroy() calls

This commit is contained in:
Steve-Mcl 2021-05-04 09:04:13 +01:00
parent 22db24509d
commit 251dda3652
2 changed files with 2 additions and 1 deletions

View File

@ -345,6 +345,7 @@
}
expressionEditor.destroy();
testDataEditor.destroy();
testResultEditor.destroy();
},
show: function() {}
}

View File

@ -602,10 +602,10 @@
},
close: function() {
// expressionEditor.destroy();
if (options.onclose) {
options.onclose();
}
expressionEditor.destroy();
},
show: function() {}
}