Skip to content
This repository has been archived by the owner on Apr 22, 2021. It is now read-only.

Commit

Permalink
fix: automatically adjust listing price
Browse files Browse the repository at this point in the history
fixes #189
  • Loading branch information
Tim Klingeleers committed Sep 20, 2019
1 parent 0aafb38 commit 45d13e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/transferlist/min-bin.js
Expand Up @@ -141,8 +141,8 @@ class MinBin extends BaseScript {

const bidSpinner = quicklistpanelView._bidNumericStepper;
const buySpinner = quicklistpanelView._buyNowNumericStepper;
bidSpinner.value = listPrice.start;
buySpinner.value = listPrice.buyNow;
bidSpinner.setValue(listPrice.start);
buySpinner.setValue(listPrice.buyNow);
}
}

Expand Down

0 comments on commit 45d13e7

Please sign in to comment.