1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 03:12:42 +02:00

Changelog update and reduce allowed characters from 30 to 20.

This commit is contained in:
Kevin Serrano 2016-06-28 13:10:29 -07:00
parent 4be704097f
commit 661d9bffb3
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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)
},