From e41c35cb5b67815987b52f505df30c12c4344477 Mon Sep 17 00:00:00 2001 From: Kainoa Kanter Date: Fri, 5 Sep 2025 14:47:32 -0700 Subject: [PATCH] make default notification action text "Open" --- Modules/Notification/Notification.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Notification/Notification.qml b/Modules/Notification/Notification.qml index 7abb6cc..c1328d9 100644 --- a/Modules/Notification/Notification.qml +++ b/Modules/Notification/Notification.qml @@ -273,7 +273,7 @@ Variants { delegate: NButton { text: { - var actionText = modelData.text || "Action" + var actionText = modelData.text || "Open" // If text contains comma, take the part after the comma (the display text) if (actionText.includes(",")) { return actionText.split(",")[1] || actionText