Skip to content

Commit

Permalink
[FIX] Showing Blank Message Inside Report (#25007)
Browse files Browse the repository at this point in the history
  • Loading branch information
nishant23122000 authored Apr 21, 2022
1 parent cb416bb commit 7472140
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ Meteor.startup(async function () {
modal.open(
{
title: TAPi18n.__('Report_this_message_question_mark'),
text: message.msg,
text: message.msg || (message.attachments && message.attachments[0]?.description) || message.file?.name,
inputPlaceholder: TAPi18n.__('Why_do_you_want_to_report_question_mark'),
type: 'input',
showCancelButton: true,
Expand Down

0 comments on commit 7472140

Please sign in to comment.