aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/customize-gas-modal/gas-modal-card.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-10-19 03:23:35 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-10-20 03:34:34 +0800
commitc2880c4b8fe56f3b175d75b6ae8a84271dde3e28 (patch)
tree9054d389467d47a3ecaadd6662ab19a38bc027a3 /ui/app/components/customize-gas-modal/gas-modal-card.js
parent7362fb8dfc5b8d9f3ae9a3399f9448ea5720cd43 (diff)
downloadtangerine-wallet-browser-c2880c4b8fe56f3b175d75b6ae8a84271dde3e28.tar.gz
tangerine-wallet-browser-c2880c4b8fe56f3b175d75b6ae8a84271dde3e28.tar.zst
tangerine-wallet-browser-c2880c4b8fe56f3b175d75b6ae8a84271dde3e28.zip
Min and default gas price, limit, total; comments out code for gas slider.
Diffstat (limited to 'ui/app/components/customize-gas-modal/gas-modal-card.js')
-rw-r--r--ui/app/components/customize-gas-modal/gas-modal-card.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/ui/app/components/customize-gas-modal/gas-modal-card.js b/ui/app/components/customize-gas-modal/gas-modal-card.js
index 8e739ee40..de181dc67 100644
--- a/ui/app/components/customize-gas-modal/gas-modal-card.js
+++ b/ui/app/components/customize-gas-modal/gas-modal-card.js
@@ -19,7 +19,7 @@ GasModalCard.prototype.render = function () {
unitLabel,
value,
min,
- max,
+ // max,
step,
title,
copy
@@ -34,20 +34,20 @@ GasModalCard.prototype.render = function () {
h(InputNumber, {
unitLabel,
step,
- max,
+ // max,
min,
placeholder: '0',
value,
onChange,
}),
- h(GasSlider, {
- value,
- step,
- max,
- min,
- onChange,
- }),
+ // h(GasSlider, {
+ // value,
+ // step,
+ // max,
+ // min,
+ // onChange,
+ // }),
])