User name coloring on thread list

This commit is contained in:
ismailgulek
2022-01-04 17:26:47 +03:00
parent e367c8152b
commit b811010b8f
4 changed files with 16 additions and 2 deletions
@@ -249,10 +249,10 @@ extension ThreadListViewController: UITableViewDataSource {
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell: ThreadTableViewCell = tableView.dequeueReusableCell(for: indexPath)
cell.update(theme: theme)
if let threadVM = viewModel.threadViewModel(at: indexPath.row) {
cell.configure(withViewModel: threadVM)
}
cell.update(theme: theme)
return cell
}