summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/package/contents/ui/People.qml15
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 {