mirror of
https://github.com/gchq/CyberChef
synced 2024-12-26 20:43:10 +00:00
Fixed recipe saving
This commit is contained in:
parent
e0eb972a54
commit
cc44be7ef9
1 changed files with 1 additions and 1 deletions
|
@ -257,7 +257,7 @@ ControlsWaiter.prototype.loadClick = function() {
|
||||||
*/
|
*/
|
||||||
ControlsWaiter.prototype.saveButtonClick = function() {
|
ControlsWaiter.prototype.saveButtonClick = function() {
|
||||||
const recipeName = Utils.escapeHtml(document.getElementById("save-name").value);
|
const recipeName = Utils.escapeHtml(document.getElementById("save-name").value);
|
||||||
const recipeStr = document.getElementById("save-text").value;
|
const recipeStr = document.querySelector("#save-texts .tab-pane.active textarea").value;
|
||||||
|
|
||||||
if (!recipeName) {
|
if (!recipeName) {
|
||||||
this.app.alert("Please enter a recipe name", "danger", 2000);
|
this.app.alert("Please enter a recipe name", "danger", 2000);
|
||||||
|
|
Loading…
Reference in a new issue