summaryrefslogtreecommitdiffstats
path: root/views/people
diff options
context:
space:
mode:
Diffstat (limited to 'views/people')
-rw-r--r--views/people/qml/People.qml13
1 files changed, 13 insertions, 0 deletions
diff --git a/views/people/qml/People.qml b/views/people/qml/People.qml
index 8b35f5e7..718d3c08 100644
--- a/views/people/qml/People.qml
+++ b/views/people/qml/People.qml
@@ -228,7 +228,20 @@ FocusScope {
228 } 228 }
229 229
230 Kube.Button { 230 Kube.Button {
231 anchors {
232 bottom: parent.bottom
233 left: parent.left
234 margins: Kube.Units.largeSpacing
235 }
236 text: qsTr("Remove")
231 237
238 onClicked: {
239 contactController.remove()
240 stack.pop()
241 }
242 }
243
244 Kube.Button {
232 anchors { 245 anchors {
233 bottom: parent.bottom 246 bottom: parent.bottom
234 right: parent.right 247 right: parent.right