declarative: Fix error message
There's no write property here, also print the actual error message.
This commit is contained in:
parent
80f310e2bd
commit
2bd8a00aaf
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ QtObject {
|
||||||
prop._value = result;
|
prop._value = result;
|
||||||
}
|
}
|
||||||
onError: message => {
|
onError: message => {
|
||||||
console.warn("failed call", object, read, write, change)
|
console.warn("failed call", prop.object, prop.read, prop.change, message)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue