mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
historytable: fix blockheight copying
This commit is contained in:
parent
e729cd233c
commit
e5bdf34325
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (c) 2014-2018, The Monero Project
|
// Copyright (c) 2014-2019, The Monero Project
|
||||||
//
|
//
|
||||||
// All rights reserved.
|
// All rights reserved.
|
||||||
//
|
//
|
||||||
|
@ -371,7 +371,7 @@ ListView {
|
||||||
return qsTr("FAILED") + translationManager.emptyString
|
return qsTr("FAILED") + translationManager.emptyString
|
||||||
return qsTr("PENDING") + translationManager.emptyString
|
return qsTr("PENDING") + translationManager.emptyString
|
||||||
}
|
}
|
||||||
copyValue: labelValue
|
copyValue: labelValue.indexOf(" ") > 0 ? labelValue.slice(0, labelValue.indexOf(" ")) : labelValue
|
||||||
}
|
}
|
||||||
|
|
||||||
// right column
|
// right column
|
||||||
|
|
Loading…
Reference in a new issue