fix: remove extra text from end of download file name (#5121)
This commit is contained in:
parent
6e009c6d9e
commit
df2aca6f96
1 changed files with 1 additions and 1 deletions
|
|
@ -123,7 +123,7 @@ class AnalyticsDownloadDialogState extends State<AnalyticsDownloadDialog> {
|
|||
});
|
||||
|
||||
final fileName =
|
||||
"analytics_${client.userID?.localpart}_${DateFormat('yyyy-MM-dd-hh:mm:ss').format(DateTime.now())}.xlsx'}";
|
||||
"analytics_${client.userID?.localpart}_${DateFormat('yyyy-MM-dd-hh:mm:ss').format(DateTime.now())}.xlsx";
|
||||
|
||||
await DownloadUtil.downloadFile(
|
||||
content,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue