OpenZesame / Zhip

iOS Wallet for Zilliqa
MIT License
35 stars 6 forks source link

[Send] Cannot delete "0" amount #83

Closed Sajjon closed 5 years ago

Sajjon commented 5 years ago

You cannot delete all characters in the input field for "Amount" when sending (PrepareTransaction).

This is a bit annoying and confusing for users which might want to clear amount field and enter something else.

However, when the user starts typing, the first digit, i.e. 2 will replace the 0, events: State: amountTextfield.text == "0" Event: user inputs: "2" State: amountTextfield.text == "2"

Or in words, the digit "2" replaces the "0", it does not become "02", which is good, which makes this a non critical bug.

Sajjon commented 5 years ago

Fixed