mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-22 17:33:23 +01:00
Enforce 30 character limit on wallet name.
This commit is contained in:
parent
c41c4f719f
commit
86a1eaadf1
@ -4,6 +4,7 @@
|
||||
|
||||
- Fixed bug where MetaMask interfered with PDF loading.
|
||||
- Moved switch account icon into menu bar.
|
||||
- Now enforce 30 character limit on wallet names.
|
||||
|
||||
## 2.4.4 2016-06-23
|
||||
|
||||
|
@ -18,6 +18,7 @@ EditableLabel.prototype.render = function () {
|
||||
return h('div.editable-label', [
|
||||
h('input.sizing-input', {
|
||||
defaultValue: props.textValue,
|
||||
maxLength: "30",
|
||||
onKeyPress: (event) => {
|
||||
this.saveIfEnter(event)
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user