fix: content of the text message written three times (#2296)

* fix: content of the text message in the info dialog box was written three times

* fix: text message content size is not calculated correctly
This commit is contained in:
Yevhenii Sirenko
2025-02-20 13:36:46 +02:00
committed by GitHub
parent 56f264d096
commit a2740fa537
+1 -1
View File
@@ -70,7 +70,7 @@ class FileInfoDialog extends StatelessWidget {
if (entry.isMessage)
Padding(
padding: const EdgeInsets.only(top: 10),
child: SelectableText(entry.fileName + entry.fileName + entry.fileName),
child: SelectableText(entry.fileName),
),
],
),