Tidy up errors
This commit is contained in:
parent
b20b6cc5ca
commit
21fb688bf6
|
@ -13,6 +13,7 @@ This document attempts to track **major** changes and additions in ENiGMA½. For
|
|||
* New users now have randomly generated avatars assigned to them that can be served up via the new System General [Web Handler](/docs/_docs/servers/contentservers/web-handlers.md).
|
||||
* CombatNet has shut down, so the module (`combatnet.js`) has been removed.
|
||||
* New `NewUserPrePersist` system event available to developers to 'hook' account creation and add their own properties/etc.
|
||||
* The signature for `viewValidationListener`'s callback has changed: It is now `(err, newFocusId)`. To ignore a validation error, implementors can simply call the callback with a `null` error, else they should forward it on.
|
||||
|
||||
## 0.0.13-beta
|
||||
* **Note for contributors**: ENiGMA has switched to [Prettier](https://prettier.io) for formatting/style. Please see [CONTRIBUTING](CONTRIBUTING.md) and the Prettier website for more information.
|
||||
|
|
|
@ -400,6 +400,7 @@
|
|||
TL1: { width: 19, textOverflow: "..." }
|
||||
ET2: { width: 19, textOverflow: "..." }
|
||||
ET3: { width: 19, textOverflow: "..." }
|
||||
ET4: { width: 21, textOverflow: "..." }
|
||||
}
|
||||
}
|
||||
1: {
|
||||
|
@ -773,6 +774,7 @@
|
|||
TL1: { width: 19, textOverflow: "..." }
|
||||
ET2: { width: 19, textOverflow: "..." }
|
||||
ET3: { width: 19, textOverflow: "..." }
|
||||
ET4: { width: 21, textOverflow: "..." }
|
||||
//TL4: { width: 25 }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue