diff options
Diffstat (limited to 'components/package/contents/ui/FolderListView.qml')
-rw-r--r-- | components/package/contents/ui/FolderListView.qml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/components/package/contents/ui/FolderListView.qml b/components/package/contents/ui/FolderListView.qml index 9ac73fb4..a4d25e02 100644 --- a/components/package/contents/ui/FolderListView.qml +++ b/components/package/contents/ui/FolderListView.qml | |||
@@ -28,14 +28,18 @@ import org.kube.framework.domain 1.0 as KubeFramework | |||
28 | Rectangle { | 28 | Rectangle { |
29 | id: root | 29 | id: root |
30 | 30 | ||
31 | property variant currentFolder | 31 | property variant currentFolder: null |
32 | property variant accountId | 32 | property variant accountId |
33 | 33 | ||
34 | color: Kirigami.Theme.textColor | 34 | color: Kirigami.Theme.textColor |
35 | 35 | ||
36 | KubeFramework.FolderController { | 36 | KubeFramework.FolderController { |
37 | id: folderController | 37 | id: folderController |
38 | folder: root.currentFolder | 38 | Binding on folder { |
39 | //!! checks for the availability of the type | ||
40 | when: !!root.currentFolder | ||
41 | value: root.currentFolder | ||
42 | } | ||
39 | } | 43 | } |
40 | 44 | ||
41 | Menu { | 45 | Menu { |