mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-19 12:22:16 +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 {
|
ShareeSearchField {
|
||||||
id: shareeSearchField
|
id: shareeSearchField
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|
Loading…
Reference in a new issue