Skip to content

Commit

Permalink
fix(notification): Fix overflow in detail page with large post card
Browse files Browse the repository at this point in the history
  • Loading branch information
realth000 committed Jun 1, 2024
1 parent d7dc521 commit eac1033
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- 编辑:修复编辑器的滚动导致页面标题栏背景色改变的问题。
- 应该只在页面主体滚动时改变颜色。
- 首页:避免首页四个选项卡多次来回切换时重复加载的问题。
- 通知:修复包含长楼层的评分详情页面无法滚动的问题。

### Changed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class _NoticeDetailPage extends State<NoticeDetailPage> {
// success state.
final post = state.post!;
if (widget.noticeType == NoticeType.rate) {
return PostCard(post);
return SingleChildScrollView(child: PostCard(post));
}

if (state.replyParameters != null) {
Expand Down

0 comments on commit eac1033

Please sign in to comment.