Fix zoom input range

palantir-hotfix
Albert Ford 2021-09-06 01:04:29 -07:00 committed by Thibault Duplessis
parent ec44d850e3
commit 0fc9b76fea
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(),
},