From c092d555bd6d3e93a11625bfe76bb59b2e64e994 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Sat, 29 Jul 2017 16:42:52 -0600 Subject: SelectableLabel to support copying individual labels --- components/kube/contents/ui/LogView.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'components') diff --git a/components/kube/contents/ui/LogView.qml b/components/kube/contents/ui/LogView.qml index f655b977..299c8e67 100644 --- a/components/kube/contents/ui/LogView.qml +++ b/components/kube/contents/ui/LogView.qml @@ -131,7 +131,7 @@ Controls.SplitView { text: qsTr("Account:") visible: details.accountName } - Kube.Label { + Kube.SelectableLabel { text: details.accountName visible: details.accountName } @@ -139,7 +139,7 @@ Controls.SplitView { text: qsTr("Account Id:") visible: details.accountId } - Kube.Label { + Kube.SelectableLabel { text: details.accountId visible: details.accountId } @@ -147,20 +147,20 @@ Controls.SplitView { text: qsTr("Resource Id:") visible: details.resourceId } - Kube.Label { + Kube.SelectableLabel { text: details.resourceId visible: details.resourceId } Kube.Label { text: qsTr("Timestamp:") } - Kube.Label { + Kube.SelectableLabel { text: Qt.formatDateTime(details.timestamp, " hh:mm:ss dd MMM yyyy") } Kube.Label { text: qsTr("Message:") } - Kube.Label { + Kube.SelectableLabel { text: details.message wrapMode: Text.Wrap Layout.fillWidth: true -- cgit v1.2.3