Skip to content

Commit 97d24c8

Browse files
Camilamgallien
authored andcommitted
Fix two factor auth notification: activity item was disabled.
User couldn't click on the links. Signed-off-by: Camila <hello@camila.codes>
1 parent 089c552 commit 97d24c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/gui/tray/ActivityItem.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ MouseArea {
1919
property color adjustedHeaderColor: Theme.darkMode ? Qt.lighter(UserModel.currentUser.headerColor, 2)
2020
: Qt.darker(UserModel.currentUser.headerColor, 1.5)
2121

22-
enabled: (model.path !== "" || model.link !== "" || model.isCurrentUserFileActivity === true)
22+
enabled: (model.path !== "" || model.link !== "" || model.links.length > 0 || model.isCurrentUserFileActivity === true)
2323
hoverEnabled: true
2424

2525
// We center the children vertically in the middle of this MouseArea to create the padding.

0 commit comments

Comments
 (0)