From 7db68ad2c5736d632e3da3d5ec716219499cda01 Mon Sep 17 00:00:00 2001 From: Camila Date: Tue, 20 Sep 2022 18:53:55 +0200 Subject: [PATCH] Fix two factor auth notification: activity item was disabled. User couldn't click on the links. Signed-off-by: Camila --- src/gui/tray/ActivityItem.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/tray/ActivityItem.qml b/src/gui/tray/ActivityItem.qml index 72d3311f0c444..4c521476225bd 100644 --- a/src/gui/tray/ActivityItem.qml +++ b/src/gui/tray/ActivityItem.qml @@ -20,7 +20,7 @@ ItemDelegate { property color adjustedHeaderColor: Theme.darkMode ? Qt.lighter(UserModel.currentUser.headerColor, 2) : Qt.darker(UserModel.currentUser.headerColor, 1.5) - enabled: (model.path !== "" || model.link !== "" || model.isCurrentUserFileActivity === true) + enabled: (model.path !== "" || model.link !== "" || model.links.length > 0 || model.isCurrentUserFileActivity === true) padding: Style.standardSpacing Accessible.role: Accessible.ListItem