mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-22 17:33:23 +01:00
Changelog update and reduce allowed characters from 30 to 20.
This commit is contained in:
parent
4be704097f
commit
661d9bffb3
@ -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
|
||||
|
@ -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)
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user