Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/Model/RadioSection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ open class RadioSection: Section {
return options
}
set {
options = rows as? [OptionRowCompatible] ?? options
options = newValue as? [OptionRowCompatible] ?? options
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice catch, thank you!

}
}

Expand Down
2 changes: 1 addition & 1 deletion Source/Protocol/Row.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import Foundation

/// Any type that conforms to this protocol is capable of representing a row in a table view.
public protocol Row {
public protocol Row: class {

/// The title text of the row.
var title: String { get }
Expand Down