Browse Source

fixes #938

tags/v0.3.1
Big Bad Waffle 5 years ago
parent
commit
6527e6c3e4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/client/ui/templates/inventory/inventory.js

+ 1
- 1
src/client/ui/templates/inventory/inventory.js View File

@@ -403,7 +403,7 @@ define([
onEnterStackAmount: function (e) {
let el = this.find('.split-box .amount');
let val = el.val();
if (val !== ~~val)
if (+val !== ~~+val)
el.val('');
else if (val) {
let item = this.find('.split-box').data('item');


Loading…
Cancel
Save