From 661d9bffb3ea91cc6d7bc855fd0ec587866f61bf Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Tue, 28 Jun 2016 13:10:29 -0700 Subject: Changelog update and reduce allowed characters from 30 to 20. --- CHANGELOG.md | 3 ++- ui/app/components/editable-label.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25a5fedb3..4c03aad19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,8 @@ - Fixed bug where MetaMask interfered with PDF loading. - Moved switch account icon into menu bar. - Changed status shapes to be a yellow warning sign for failure and ellipsis for pending transactions. -- Now enforce 30 character limit on wallet names. +- Now enforce 20 character limit on wallet names. +- Wallet titles are now properly truncated in transaction confirmation. ## 2.4.4 2016-06-23 diff --git a/ui/app/components/editable-label.js b/ui/app/components/editable-label.js index 05ffd4c92..4f690ebfe 100644 --- a/ui/app/components/editable-label.js +++ b/ui/app/components/editable-label.js @@ -18,7 +18,7 @@ EditableLabel.prototype.render = function () { return h('div.editable-label', [ h('input.sizing-input', { defaultValue: props.textValue, - maxLength: '30', + maxLength: '20', onKeyPress: (event) => { this.saveIfEnter(event) }, -- cgit v1.2.3