mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-24 15:49:42 +02:00
fix: removed HTML tags when copying recipe ingredients (#2533)
This commit is contained in:
parent
408ca88cb2
commit
0a00a6ea0d
3 changed files with 17 additions and 6 deletions
|
@ -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");
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue