This commit is contained in:
sanjayk03-dev
2023-12-30 05:56:59 +05:30
parent 72ed2f7390
commit fcc807c1fd

View File

@@ -57,7 +57,11 @@ module.exports = {
saveMacros: function(){ saveMacros: function(){
var macrosName = document.getElementById("macros-name").value; var macrosName = document.getElementById("macros-name").value;
var macrosColor = document.getElementById("macros-color").value; var macrosColor = document.getElementById("macros-color").value;
if(this.config.macros == undefined) return; if(this.config.macros == undefined) {
console.log("macros is undefined");
this.config.macros=[];
return;
}
this.config.macros.push({ this.config.macros.push({
id:Math.random(), id:Math.random(),
name:macrosName, name:macrosName,