From 427571984477825189ff3f236c700c0c0527e21a Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Mon, 14 Jul 2025 12:15:27 +0800 Subject: [PATCH] opt save dyn Signed-off-by: bggRGjQaUbCoE --- lib/pages/dynamics/widgets/module_panel.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/pages/dynamics/widgets/module_panel.dart b/lib/pages/dynamics/widgets/module_panel.dart index 021ce17b..990d8de8 100644 --- a/lib/pages/dynamics/widgets/module_panel.dart +++ b/lib/pages/dynamics/widgets/module_panel.dart @@ -130,7 +130,10 @@ Widget module( ), const SizedBox(width: 6), Text( - DateUtil.dateFormat(orig.modules.moduleAuthor!.pubTs), + isSave + ? DateUtil.format(orig.modules.moduleAuthor!.pubTs, + format: DateUtil.longFormatDs) + : DateUtil.dateFormat(orig.modules.moduleAuthor!.pubTs), style: TextStyle( color: theme.colorScheme.outline, fontSize: theme.textTheme.labelSmall!.fontSize),