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

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,
});