Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Version 25.03.X
Fixes:
- [core] Fix period calculation
- [dashboards] Update dialog button color when deleting dashboard/widget

Enterprise Fixes:
- [crash_symbolication] Use countlyfs for JavaScript symbolication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@

case "delete":
d.__action = "delete";
CountlyHelpers.confirm(this.i18nM("dashboards.delete-widget-text"), "popStyleGreen", function(result) {
CountlyHelpers.confirm(this.i18nM("dashboards.delete-widget-text"), "danger", function(result) {
if (!result) {
return false;
}
Expand Down Expand Up @@ -1579,7 +1579,7 @@

case "delete":
d.__action = "delete";
CountlyHelpers.confirm(this.i18n("dashboards.delete-dashboard-text", d.name), "popStyleGreen", function(result) {
CountlyHelpers.confirm(this.i18n("dashboards.delete-dashboard-text", d.name), "danger", function(result) {
if (!result) {
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const customDashboardElements = {
DELETE_POPUP_CLOSE_ICON: "el-dialog-test-id-el-dialog-close-button",
DELETE_POPUP_SUBTITLE: "el-dialog-test-id-el-dialog-content-label",
DELETE_POPUP_CANCEL_BUTTON: "cly-confirm-test-id-cly-confirm-dialog-cancel-button",
DELETE_POPUP_DELETE_BUTTON: "cly-confirm-test-id-cly-confirm-dialog-save-button"
DELETE_POPUP_DELETE_BUTTON: "cly-confirm-test-id-cly-confirm-dialog-danger-button"
};

const customDashboardWidgetElements = (index = 0) => ({
Expand Down Expand Up @@ -132,4 +132,4 @@ module.exports = {
customDashboardWidgetElements,
customDashboardDrawerElements,
newWidgetDrawerElements
};
};
Loading