Fix prettier

Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
This commit is contained in:
RD WebDesign
2022-05-16 01:50:05 -03:00
parent e6dc3a0287
commit d0b9588fff

View File

@@ -81,7 +81,12 @@ function addCustomCNAME() {
success: function (response) {
utils.enableAll();
if (response.success) {
utils.showAlert("success", "far fa-check-circle", "Custom CNAME added", domain + ": " + target);
utils.showAlert(
"success",
"far fa-check-circle",
"Custom CNAME added",
domain + ": " + target
);
table.ajax.reload();
} else {
utils.showAlert("error", "fas fa-times", "Failure! Something went wrong", response.message);
@@ -110,7 +115,12 @@ function deleteCustomCNAME() {
success: function (response) {
utils.enableAll();
if (response.success) {
utils.showAlert("success", "far fa-check-circle", "Custom CNAME deleted", domain + ": " + target);
utils.showAlert(
"success",
"far fa-check-circle",
"Custom CNAME deleted",
domain + ": " + target
);
table.ajax.reload();
} else {
utils.showAlert("error", "fas fa-times", "Failure! Something went wrong", response.message);