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),