Add preliminary feedback to dashboard save/load/del

This commit is contained in:
Herbert Wolverson
2024-06-26 12:35:45 -05:00
parent 22c5708e63
commit d6e1c8f8fc

View File

@@ -179,6 +179,7 @@ export class Dashboard {
success: (data) => {
this.dashletIdentities = data;
this.#replaceDashletList();
alert("Layout Loaded");
}
});
}
@@ -200,6 +201,7 @@ export class Dashboard {
contentType: 'application/json',
success: (data) => {
$.get("/local-api/dashletThemes", (data) => {
alert("Layout deleted: " + layoutName);
this.fillServerLayoutList(data);
});
}
@@ -242,6 +244,7 @@ export class Dashboard {
success: (data) => {
$.get("/local-api/dashletThemes", (data) => {
this.fillServerLayoutList(data);
alert("Layout Saved");
});
}
})