Hi all,
I'm trying to add a document on the same Notes i'm creating
Here's what i'm doing :

I'm making the following patch :
Patch(
Notes;
Defaults(Notes);
{
Titre: TextInput3.Text;
Description: RichTextEditor5.HtmlText;
Concernant: Gallery1.Selected;
'Est un document': If(
IsBlank(DataCardValue7.Attachments);
false;
true
);
Document: First(DataCardValue7.Attachments).Value;
'Nom de fichier': First(DataCardValue7.Attachments).Name
}
);;
The note is added to dataverse Notes entity but when i try to open the document, nothing happens !

Why i can't open my document saved on Dataverse ?
Many thanks