1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-23 15:19:41 +02:00

fix: set useFractions on Unit creation to true by default (#4469)

This commit is contained in:
Kuchenpirat 2024-10-30 14:27:02 +01:00 committed by GitHub
parent 53a566d08a
commit 6e16d4cc91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -323,7 +323,7 @@ export default defineComponent({
// we explicitly set booleans to false since forms don't POST unchecked boxes
const createTarget = ref<CreateIngredientUnit>({
name: "",
fraction: false,
fraction: true,
useAbbreviation: false,
});