summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/kube/contents/ui/MailView.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/components/kube/contents/ui/MailView.qml b/components/kube/contents/ui/MailView.qml
index c9fa47c0..997cbb7a 100644
--- a/components/kube/contents/ui/MailView.qml
+++ b/components/kube/contents/ui/MailView.qml
@@ -96,6 +96,10 @@ SplitView {
96 name: "busy"; when: model.status == Kube.AccountsModel.BusyStatus 96 name: "busy"; when: model.status == Kube.AccountsModel.BusyStatus
97 PropertyChanges { target: statusText; text: "Busy"; visible: true } 97 PropertyChanges { target: statusText; text: "Busy"; visible: true }
98 PropertyChanges { target: progressBar; visible: true } 98 PropertyChanges { target: progressBar; visible: true }
99 },
100 State {
101 name: "error"; when: model.status == Kube.AccountsModel.ErrorStatus
102 PropertyChanges { target: statusText; text: "Error"; visible: true }
99 } 103 }
100 ] 104 ]
101 } 105 }