fix: breaking attribute coercion behavior

see: https://v3.vuejs.org/guide/migration/attribute-coercion.html#overview
This commit is contained in:
Dominik Pschenitschni 2021-08-20 17:00:03 +02:00 committed by kolaente
parent fe27a432c7
commit 697ea12c8e
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
14 changed files with 18 additions and 18 deletions

View file

@ -1,6 +1,6 @@
<template>
<div class="select">
<select :disabled="disabled" @change="updateData" v-model.number="percentDone">
<select :disabled="disabled || null" @change="updateData" v-model.number="percentDone">
<option value="0">0%</option>
<option value="0.1">10%</option>
<option value="0.2">20%</option>