update browsers db,

add (%) to custom taxes label as it always is a percentage
This commit is contained in:
Marek Fraczyk
2021-06-08 17:01:02 +03:00
parent 1e986cd7a0
commit 11e995a97a
2 changed files with 4 additions and 4 deletions

6
package-lock.json generated
View File

@ -2915,9 +2915,9 @@
}
},
"caniuse-lite": {
"version": "1.0.30001137",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001137.tgz",
"integrity": "sha512-54xKQZTqZrKVHmVz0+UvdZR6kQc7pJDgfhsMYDG19ID1BWoNnDMFm5Q3uSBSU401pBvKYMsHAt9qhEDcxmk8aw==",
"version": "1.0.30001235",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001235.tgz",
"integrity": "sha512-zWEwIVqnzPkSAXOUlQnPW2oKoYb2aLQ4Q5ejdjBcnH63rfypaW34CxaeBn1VMya2XaEU3P/R2qHpWyj+l0BT1A==",
"dev": true
},
"case-sensitive-paths-webpack-plugin": {

View File

@ -3,7 +3,7 @@
<div v-for="tax in taxes" :key="tax.id">
<AppEditable :value="tax.label"
:placeholder="$t('label')"
@change="updateTaxProp({ label: $event }, tax)"/>
@change="updateTaxProp({ label: $event }, tax)"/> (%)
<i class="material-icons md-18 float-right pointer" @click="removeTax(tax)">close</i>
<AppInput :value="tax.value" @change="updateTaxProp({ value: $event }, tax)"
:placeholder="tax.label" type="number"/>