summaryrefslogtreecommitdiff
path: root/src/web/app/common
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-03-27 04:39:46 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-03-27 04:39:46 +0900
commit692bd515e345a750caa285830aa4f78e2dce51f6 (patch)
tree3b4d23d2ffbee685ec886770a05d14690ac776d3 /src/web/app/common
parentMerge pull request #341 from syuilo/greenkeeper/riot-3.4.0 (diff)
downloadmisskey-692bd515e345a750caa285830aa4f78e2dce51f6.tar.gz
misskey-692bd515e345a750caa285830aa4f78e2dce51f6.tar.bz2
misskey-692bd515e345a750caa285830aa4f78e2dce51f6.zip
Clean up
Diffstat (limited to 'src/web/app/common')
-rw-r--r--src/web/app/common/tags/number.tag4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/web/app/common/tags/number.tag b/src/web/app/common/tags/number.tag
index 7dcbceba6a..7afb8b3983 100644
--- a/src/web/app/common/tags/number.tag
+++ b/src/web/app/common/tags/number.tag
@@ -5,9 +5,7 @@
</style>
<script>
this.on('mount', () => {
- // https://github.com/riot/riot/issues/2103
- //value = this.opts.value
- let value = this.opts.riotValue;
+ let value = this.opts.value;
const max = this.opts.max;
if (max != null && value > max) value = max;