aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/input-number.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/input-number.js')
-rw-r--r--ui/app/components/input-number.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/app/components/input-number.js b/ui/app/components/input-number.js
index e3bbaf380..63e841288 100644
--- a/ui/app/components/input-number.js
+++ b/ui/app/components/input-number.js
@@ -49,6 +49,7 @@ InputNumber.prototype.render = function () {
onClick: () => this.setValue(value + step),
}),
h('i.fa.fa-angle-down', {
+ style: { cursor: 'pointer' },
onClick: () => this.setValue(value - step),
}),
]),