修复tag原文显示问题

更新依赖
This commit is contained in:
2024-05-24 14:42:18 +08:00
parent ebccce7f3d
commit c9d5d965ad
15 changed files with 128 additions and 115 deletions

View File

@@ -18,6 +18,6 @@ class TagWidget extends StatelessWidget {
},
extra: GalleriesPageExtra(translatedTag: tag.translated));
},
child: Text(name ?? tag.tag));
child: Text(name ?? (tag.tag.contains(':') ? tag.tag.split(':')[1] : tag.tag)));
}
}