show media in replied note
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Martti Malmi 2024-01-10 21:00:39 +02:00
parent a1f61e2d13
commit a3fc25f64c

View File

@ -41,7 +41,6 @@ const replyToNoteOptions = {
showProfileCard: false,
showTime: false,
canClick: false,
showMedia: false,
longFormPreview: true,
};
@ -50,7 +49,6 @@ const quoteNoteOptions = {
showContextMenu: false,
showTime: false,
canClick: false,
showMedia: false,
longFormPreview: true,
};
@ -614,7 +612,7 @@ export function NoteCreator() {
<h4>
<FormattedMessage defaultMessage="Reply To" id="8ED/4u" />
</h4>
<div className="h-48 overflow-y-auto">
<div className="h-64 overflow-y-auto">
<Note data={note.replyTo} options={replyToNoteOptions} />
</div>
<hr className="border-border-color border-1 -mx-6" />
@ -625,7 +623,7 @@ export function NoteCreator() {
<h4>
<FormattedMessage defaultMessage="Quote Repost" id="C7642/" />
</h4>
<div className="h-48 overflow-y-auto">
<div className="h-64 overflow-y-auto">
<Note data={note.quote} options={quoteNoteOptions} />
</div>
<hr className="border-border-color border-1 -mx-6" />