diff options
| author | mmbyday <mmbyday@protonmail.com> | 2019-03-12 17:44:40 -0700 |
|---|---|---|
| committer | mmbyday <mmbyday@protonmail.com> | 2019-03-12 18:11:56 -0700 |
| commit | e5bdf343251d13d0bc32021a7b42f630158c5d77 (patch) | |
| tree | db3cefcad3c3d2c876a73942791a81105b807d7f /components | |
| parent | e729cd233cc939876e6e8529d340cd9f88b9b22b (diff) | |
| download | monzero-gui-e5bdf343251d13d0bc32021a7b42f630158c5d77.tar.gz monzero-gui-e5bdf343251d13d0bc32021a7b42f630158c5d77.tar.xz monzero-gui-e5bdf343251d13d0bc32021a7b42f630158c5d77.zip | |
historytable: fix blockheight copying
Diffstat (limited to 'components')
| -rw-r--r-- | components/HistoryTable.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index 6dfa313d..bbc964cb 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2018, The Monero Project +// Copyright (c) 2014-2019, The Monero Project // // All rights reserved. // @@ -371,7 +371,7 @@ ListView { return qsTr("FAILED") + translationManager.emptyString return qsTr("PENDING") + translationManager.emptyString } - copyValue: labelValue + copyValue: labelValue.indexOf(" ") > 0 ? labelValue.slice(0, labelValue.indexOf(" ")) : labelValue } // right column |
