Fix zoom input range

pull/9737/head
Albert Ford 2021-09-06 01:04:29 -07:00 committed by GitHub
parent 7d6068ba28
commit f9f74f388f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -87,8 +87,8 @@ export function view(ctrl: BoardCtrl): VNode {
h('input.range', {
attrs: {
type: 'range',
min: 100,
max: 200,
min: 0,
max: 100,
step: 1,
value: ctrl.readZoom(),
},