mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-18 11:51:51 +03:00
Display file owner information (if not self) in share view
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
cf0dd27b5f
commit
fce130440e
1 changed files with 13 additions and 0 deletions
|
@ -139,6 +139,19 @@ ColumnLayout {
|
|||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
Layout.fillWidth: true
|
||||
Layout.leftMargin: root.horizontalPadding
|
||||
Layout.rightMargin: root.horizontalPadding
|
||||
|
||||
EnforcedPlainTextLabel {
|
||||
visible: shareModel.displayFileOwner
|
||||
text: qsTr("Shared with you by %1").arg(shareModel.fileOwnerDisplayName)
|
||||
}
|
||||
|
||||
visible: shareModel.displayFileOwner
|
||||
}
|
||||
|
||||
ShareeSearchField {
|
||||
id: shareeSearchField
|
||||
Layout.fillWidth: true
|
||||
|
|
Loading…
Reference in a new issue