From: Claudio Cambra Date: Sun, 20 Oct 2024 09:37:09 +0000 (+0800) Subject: Display shared with me file's share expiry in share view if relevant X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~5^2~14^2~12 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6620bf2dd215d899fa33cd6289c9e5492910bbca;p=nextcloud-desktop.git Display shared with me file's share expiry in share view if relevant Signed-off-by: Claudio Cambra --- diff --git a/src/gui/filedetails/ShareView.qml b/src/gui/filedetails/ShareView.qml index 33bc0040e..11e7b2a25 100644 --- a/src/gui/filedetails/ShareView.qml +++ b/src/gui/filedetails/ShareView.qml @@ -148,6 +148,10 @@ ColumnLayout { visible: shareModel.displayFileOwner text: qsTr("Shared with you by %1").arg(shareModel.fileOwnerDisplayName) } + EnforcedPlainTextLabel { + visible: shareModel.sharedWithMeExpires + text: qsTr("Expires in %1").arg(shareModel.sharedWithMeRemainingTimeString) + } visible: shareModel.displayFileOwner }