mirror of
https://github.com/overte-org/overte.git
synced 2025-08-11 12:02:48 +02:00
Fixes
This commit is contained in:
parent
580865fa5a
commit
17d999e721
2 changed files with 2 additions and 8 deletions
|
@ -44,6 +44,7 @@ Item {
|
||||||
onHistoryResult : {
|
onHistoryResult : {
|
||||||
historyReceived = true;
|
historyReceived = true;
|
||||||
if (result.status === 'success') {
|
if (result.status === 'success') {
|
||||||
|
transactionHistoryModel.clear();
|
||||||
transactionHistoryModel.append(result.data.history);
|
transactionHistoryModel.append(result.data.history);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@ Rectangle {
|
||||||
HifiConstants { id: hifi; }
|
HifiConstants { id: hifi; }
|
||||||
|
|
||||||
id: root;
|
id: root;
|
||||||
property string lastPage: "securityImage";
|
property string lastPage: "initialize";
|
||||||
// Style
|
// Style
|
||||||
color: hifi.colors.baseGray;
|
color: hifi.colors.baseGray;
|
||||||
|
|
||||||
|
@ -58,16 +58,9 @@ Rectangle {
|
||||||
//
|
//
|
||||||
Item {
|
Item {
|
||||||
id: securityImageContainer;
|
id: securityImageContainer;
|
||||||
visible: false;
|
|
||||||
// Anchors
|
// Anchors
|
||||||
anchors.fill: parent;
|
anchors.fill: parent;
|
||||||
|
|
||||||
onVisibleChanged: {
|
|
||||||
if (visible) {
|
|
||||||
commerce.getSecurityImage();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: securityImageTitle;
|
id: securityImageTitle;
|
||||||
// Size
|
// Size
|
||||||
|
|
Loading…
Reference in a new issue