diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-03-19 19:41:00 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-03-19 19:41:00 +0100 |
commit | 5b25db7bbfaa907e03fa3ec0b2675c17981b69b0 (patch) | |
tree | 763bf4dcdde64c89376eb9c4e9ab7343610f8416 /components/package/contents/ui | |
parent | 5b0097cc7e4b19d68a4adcbc08e50aaba0088f0a (diff) | |
download | kube-5b25db7bbfaa907e03fa3ec0b2675c17981b69b0.tar.gz kube-5b25db7bbfaa907e03fa3ec0b2675c17981b69b0.zip |
show email in person view
Diffstat (limited to 'components/package/contents/ui')
-rw-r--r-- | components/package/contents/ui/People.qml | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/components/package/contents/ui/People.qml b/components/package/contents/ui/People.qml index 41529d2a..9f76aebf 100644 --- a/components/package/contents/ui/People.qml +++ b/components/package/contents/ui/People.qml | |||
@@ -295,11 +295,16 @@ Popup { | |||
295 | 295 | ||
296 | width: personPageRoot.width - Kirigami.Units.largeSpacing | 296 | width: personPageRoot.width - Kirigami.Units.largeSpacing |
297 | 297 | ||
298 | Row { | 298 | Repeater { |
299 | spacing: Kirigami.Units.smallSpacing | 299 | |
300 | Text { text: "(main)"} | 300 | model: contactController.emails |
301 | Text { text: "testerson@kolabnow.com"; color: Kirigami.Theme.highlightColor } | 301 | |
302 | Item { width: Kirigami.Units.smallSpacing; height: 1 } | 302 | Row { |
303 | spacing: Kirigami.Units.smallSpacing | ||
304 | Text { text: "(main)" } | ||
305 | Text { text: modelData ; color: Kirigami.Theme.highlightColor } | ||
306 | Item { width: Kirigami.Units.smallSpacing; height: 1 } | ||
307 | } | ||
303 | } | 308 | } |
304 | 309 | ||
305 | Row { | 310 | Row { |