diff options
Diffstat (limited to 'components/package/contents/ui/People.qml')
-rw-r--r-- | components/package/contents/ui/People.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/components/package/contents/ui/People.qml b/components/package/contents/ui/People.qml index f280e45b..de8425df 100644 --- a/components/package/contents/ui/People.qml +++ b/components/package/contents/ui/People.qml | |||
@@ -55,6 +55,7 @@ Popup { | |||
55 | } | 55 | } |
56 | 56 | ||
57 | TextField { | 57 | TextField { |
58 | id: searchBar | ||
58 | anchors.centerIn: parent | 59 | anchors.centerIn: parent |
59 | 60 | ||
60 | placeholderText: "Search..." | 61 | placeholderText: "Search..." |
@@ -122,7 +123,9 @@ Popup { | |||
122 | 123 | ||
123 | Repeater { | 124 | Repeater { |
124 | 125 | ||
125 | model: KubeFramework.PeopleModel{} | 126 | model: KubeFramework.PeopleModel { |
127 | filter: searchBar.text | ||
128 | } | ||
126 | 129 | ||
127 | delegate: Rectangle { | 130 | delegate: Rectangle { |
128 | id: delegateRoot | 131 | id: delegateRoot |