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

Enforce 30 character limit on wallet name.

This commit is contained in:
Kevin Serrano 2016-06-28 11:30:55 -07:00
parent c41c4f719f
commit 86a1eaadf1
2 changed files with 2 additions and 0 deletions

View File

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

View File

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