add rx vm and cell to SC

This commit is contained in:
Ryan Nystrom
2017-06-02 14:53:30 -04:00
parent 80a8e81b27
commit ecda88f50b

View File

@@ -51,7 +51,9 @@ IGListBindingSectionControllerSelectionDelegate {
}
}
return [ object.details ] + bodies
return [ object.details ]
+ bodies
+ [ object.reactions ]
}
func sectionController(
@@ -84,6 +86,8 @@ IGListBindingSectionControllerSelectionDelegate {
cellClass = IssueCommentCodeBlockCell.self
} else if viewModel is IssueCommentSummaryModel {
cellClass = IssueCommentSummaryCell.self
} else if viewModel is IssueCommentReactionViewModel {
cellClass = IssueCommentReactionCell.self
} else {
cellClass = IssueCommentTextCell.self
}