Skip to content

Commit

Permalink
make content in modal computed props
Browse files Browse the repository at this point in the history
  • Loading branch information
bellangerq committed Sep 5, 2024
1 parent d1d15ab commit 8fc98ad
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions confiture-web-app/src/components/audit/DeleteFileModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,21 @@ const isImage = computed(() => {
return props.mimeType && props.mimeType.startsWith("image");
});
const title = isImage.value
? "Voulez-vous supprimer cette image ?"
: "Voulez-vous supprimer ce fichier ?";
const title = computed(() => {
return isImage.value
? "Voulez-vous supprimer cette image ?"
: "Voulez-vous supprimer ce fichier ?";
});
const description = isImage.value
? "Cette image sera définitivement supprimée de votre audit."
: "Ce fichier sera définitivement supprimé de votre audit.";
const description = computed(() => {
return isImage.value
? "Cette image sera définitivement supprimée de votre audit."
: "Ce fichier sera définitivement supprimé de votre audit.";
});
const confirm = isImage.value
? "Supprimer l’image ?"
: "Supprimer le fichier ?";
const confirm = computed(() => {
return isImage.value ? "Supprimer l’image ?" : "Supprimer le fichier ?";
});
</script>

<template>
Expand Down

0 comments on commit 8fc98ad

Please sign in to comment.