mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-19 13:19:41 +02:00
fix: recipe scaling (#4324)
This commit is contained in:
parent
a559335bd7
commit
56bd68d824
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ export default defineComponent({
|
|||
const numberParsed = !!props.basicYieldNum;
|
||||
|
||||
watch(() => numerator.value, () => {
|
||||
scale.value = parseFloat((numerator.value / denominator).toFixed(3));
|
||||
scale.value = parseFloat((numerator.value / denominator).toFixed(32));
|
||||
});
|
||||
const disableDecrement = computed(() => {
|
||||
return numerator.value <= 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue