display prompt added to add buttons clicked

This commit is contained in:
Justin
2023-07-18 18:26:52 +08:00
committed by GitHub
parent 781383098b
commit a6d0f3f102

View File

@@ -738,6 +738,7 @@ allFeaturesSelectAddBtn.map((value, index) => {
allFeatures[index].appendChild(tag); allFeatures[index].appendChild(tag);
changeVarValue(); changeVarValue();
addEventOnFeaturesList(); addEventOnFeaturesList();
displaySavePrompt2();
}); });
} }
}); });
@@ -975,6 +976,7 @@ allFeaturesTextAddBtn.map((value, index) => {
allFeatures[index].appendChild(tag); allFeatures[index].appendChild(tag);
changeVarValue(); changeVarValue();
addEventOnFeaturesList(); addEventOnFeaturesList();
displaySavePrompt2();
createLi = false; createLi = false;
} }
} }
@@ -1630,6 +1632,7 @@ allFeaturesFileAddBtn.map((value, index) => {
imagesFile.value = ""; imagesFile.value = "";
changeVarValue(); changeVarValue();
addEventOnFeaturesList(); addEventOnFeaturesList();
displaySavePrompt2();
}); });
} }
}); });