Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Discover
Commits
decafadf
Commit
decafadf
authored
Jan 20, 2022
by
Aleix Pol Gonzalez
🐧
Browse files
pk: Fix dependencies view
BUG: 414822
parent
778c044c
Pipeline
#126224
passed with stage
in 2 minutes and 28 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
libdiscover/backends/PackageKitBackend/qml/DependenciesButton.qml
View file @
decafadf
...
...
@@ -16,10 +16,10 @@ Kirigami.LinkButton {
Connections
{
target
:
resource
function
onDependenciesFound
()
{
function
onDependenciesFound
(
dependencies
)
{
view
.
model
.
clear
()
for
(
var
v
in
resource
.
dependencies
)
{
view
.
model
.
append
(
resource
.
dependencies
[
v
])
for
(
var
v
in
dependencies
)
{
view
.
model
.
append
(
dependencies
[
v
])
}
}
}
...
...
Aleix Pol Gonzalez
🐧
@apol
mentioned in commit
4d1e5ffa
·
Jan 20, 2022
mentioned in commit
4d1e5ffa
mentioned in commit 4d1e5ffa16f15d55d6c548ef4b599f2164d1b5c0
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment