diff options
| author | mmbyday <bromark@protonmail.com> | 2018-12-01 20:17:00 +0200 |
|---|---|---|
| committer | mmbyday <bromark@protonmail.com> | 2018-12-01 20:17:00 +0200 |
| commit | 8e0e088e707bcd454a7ebb12a90bbb73699b41f7 (patch) | |
| tree | 11d860b4986c0895f8af39aea307a4b530d19eac | |
| parent | 45781ab4a173fe0a747ed72140e10d18765b007e (diff) | |
| download | monzero-gui-8e0e088e707bcd454a7ebb12a90bbb73699b41f7.tar.gz monzero-gui-8e0e088e707bcd454a7ebb12a90bbb73699b41f7.tar.xz monzero-gui-8e0e088e707bcd454a7ebb12a90bbb73699b41f7.zip | |
HistoryTable: missing TransactionID text fix
| -rw-r--r-- | components/HistoryTable.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index 0077c4d2..f4ccd914 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -293,7 +293,7 @@ ListView { anchors.left: parent.left anchors.leftMargin: 30 * scaleRatio - labelHeader: QsTr("Transaction ID") + translationManager.emptyString + labelHeader: qsTr("Transaction ID") + translationManager.emptyString labelValue: hash.substring(0, 18) + "..." copyValue: hash } |
