fix: 备注去掉"备注:"前缀,只显示纯内容

前缀和内容拼接后视觉不统一,绿色背景已能区分备注区域

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
dongliang
2026-05-07 16:15:30 +09:30
parent 7894a7824e
commit 3cc357ba59

View File

@@ -377,7 +377,7 @@ class TaskListFragment : BaseFragment<FragmentTaskListBinding>() {
else -> null else -> null
} }
if (note != null) { if (note != null) {
binding.tvNote.text = "备注: $note" binding.tvNote.text = note
binding.tvNote.visibility = View.VISIBLE binding.tvNote.visibility = View.VISIBLE
} }
} }