mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-31 18:23:18 -04:00
fix: removed HTML tags when copying recipe ingredients (#2533)
This commit is contained in:
@@ -54,7 +54,7 @@ export default defineComponent({
|
||||
const ingredientCopyText = computed(() => {
|
||||
return props.value
|
||||
.map((ingredient) => {
|
||||
return `${parseIngredientText(ingredient, props.disableAmount, props.scale)}`;
|
||||
return `${parseIngredientText(ingredient, props.disableAmount, props.scale, false)}`;
|
||||
})
|
||||
.join("\n");
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user