summaryrefslogtreecommitdiffstats
path: root/views/people
diff options
context:
space:
mode:
Diffstat (limited to 'views/people')
-rw-r--r--views/people/qml/PersonComposer.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/views/people/qml/PersonComposer.qml b/views/people/qml/PersonComposer.qml
index bd469e47..f56532f8 100644
--- a/views/people/qml/PersonComposer.qml
+++ b/views/people/qml/PersonComposer.qml
@@ -121,12 +121,16 @@ Flickable {
121 width: Kube.Units.gridUnit * 15 121 width: Kube.Units.gridUnit * 15
122 placeholderText: qsTr("First Name") 122 placeholderText: qsTr("First Name")
123 backgroundColor: "white" 123 backgroundColor: "white"
124 text: contactController.firstName
125 onTextChanged: contactController.firstName = text
124 } 126 }
125 127
126 Kube.TextField { 128 Kube.TextField {
127 width: Kube.Units.gridUnit * 15 129 width: Kube.Units.gridUnit * 15
128 placeholderText: qsTr("Last Name") 130 placeholderText: qsTr("Last Name")
129 backgroundColor: "white" 131 backgroundColor: "white"
132 text: contactController.lastName
133 onTextChanged: contactController.lastName = text
130 } 134 }
131 } 135 }
132 136
@@ -142,6 +146,7 @@ Flickable {
142 146
143 width: Kube.Units.gridUnit * 20 147 width: Kube.Units.gridUnit * 20
144 text: contactController.jobTitle 148 text: contactController.jobTitle
149 onTextChanged: contactController.jobTitle = text
145 placeholderText: qsTr("Job Title") 150 placeholderText: qsTr("Job Title")
146 backgroundColor: "white" 151 backgroundColor: "white"
147 } 152 }
@@ -158,6 +163,7 @@ Flickable {
158 163
159 placeholderText: qsTr("Company") 164 placeholderText: qsTr("Company")
160 text: contactController.company 165 text: contactController.company
166 onTextChanged: contactController.company = text
161 backgroundColor: "white" 167 backgroundColor: "white"
162 } 168 }
163 } 169 }
@@ -201,18 +207,21 @@ Flickable {
201 Kube.TextField { 207 Kube.TextField {
202 width: Kube.Units.gridUnit * 20 208 width: Kube.Units.gridUnit * 20
203 text: contactController.street 209 text: contactController.street
210 onTextChanged: contactController.stree = text
204 placeholderText: qsTr("Street") 211 placeholderText: qsTr("Street")
205 backgroundColor: "white" 212 backgroundColor: "white"
206 } 213 }
207 Kube.TextField { 214 Kube.TextField {
208 width: Kube.Units.gridUnit * 20 215 width: Kube.Units.gridUnit * 20
209 text: contactController.city 216 text: contactController.city
217 onTextChanged: contactController.city = text
210 placeholderText: qsTr("City") 218 placeholderText: qsTr("City")
211 backgroundColor: "white" 219 backgroundColor: "white"
212 } 220 }
213 Kube.TextField { 221 Kube.TextField {
214 width: Kube.Units.gridUnit * 20 222 width: Kube.Units.gridUnit * 20
215 text: contactController.country 223 text: contactController.country
224 onTextChanged: contactController.country = text
216 placeholderText: qsTr("Country") 225 placeholderText: qsTr("Country")
217 backgroundColor: "white" 226 backgroundColor: "white"
218 } 227 }