diff --git a/src/Entity/Note.php b/src/Entity/Note.php
index 8e5dd60..421bfa0 100644
--- a/src/Entity/Note.php
+++ b/src/Entity/Note.php
@@ -169,7 +169,13 @@ class Note implements JsonSerializable
{
return "id}')\">".
$this->title.
- "";
+ "".
+ (
+ $this->recording ? "
".
+ "".
+ "".
+ "" : null
+ );
}
public function toTableRow(): string
@@ -186,6 +192,7 @@ class Note implements JsonSerializable
{
return [
'id' => $this->getId(),
+ 'link' => $this->toLink(),
'title' => $this->getTitle(),
'date' => $this->getDate(),
'passage' => $this->getPassage(),