summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/kube/contents/ui/ComposerView.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/kube/contents/ui/ComposerView.qml b/components/kube/contents/ui/ComposerView.qml
index a06ef19c..2c00aad8 100644
--- a/components/kube/contents/ui/ComposerView.qml
+++ b/components/kube/contents/ui/ComposerView.qml
@@ -169,9 +169,9 @@ Kube.View {
169 margins: Kube.Units.smallSpacing 169 margins: Kube.Units.smallSpacing
170 } 170 }
171 171
172 Kube.Label{ 172 Kube.Label {
173 width: content.width 173 width: content.width
174 text: model.subject 174 text: model.subject == "" ? "no subject" : model.subject
175 color: Kube.Colors.highlightedTextColor 175 color: Kube.Colors.highlightedTextColor
176 maximumLineCount: 2 176 maximumLineCount: 2
177 wrapMode: Text.WrapAnywhere 177 wrapMode: Text.WrapAnywhere