diff options
| author | selsta <selsta@sent.at> | 2021-07-26 00:42:44 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-07-26 00:42:44 +0200 |
| commit | 57f9cf9d85b430c4cde20170b37c75b85e151d0d (patch) | |
| tree | f9f3b517caf6db9c7ac2fbaa0b4db855340f7540 | |
| parent | 51828babbb63819ec6fb3ce03b2b0cd2a7c5c462 (diff) | |
| download | monzero-gui-57f9cf9d85b430c4cde20170b37c75b85e151d0d.tar.gz monzero-gui-57f9cf9d85b430c4cde20170b37c75b85e151d0d.tar.xz monzero-gui-57f9cf9d85b430c4cde20170b37c75b85e151d0d.zip | |
History: fix transactions missing after midnight
| -rw-r--r-- | pages/History.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/History.qml b/pages/History.qml index 49a4a125..45732c52 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -1410,7 +1410,7 @@ Rectangle { } if (typeof root.model !== 'undefined' && root.model != null) { - toDatePicker.currentDate = new Date(); //today + toDatePicker.currentDate = root.model.transactionHistory.lastDateTime } // extract from model, create JS array of txs |
