mirror of
https://github.com/mihonapp/mihon.git
synced 2025-11-13 12:38:58 +01:00
Minor cleanup
This commit is contained in:
@@ -24,4 +24,4 @@ class ExtensionFilterController : ComposeController<ExtensionFilterPresenter>()
|
||||
}
|
||||
}
|
||||
|
||||
data class FilterUiModel(val lang: String, val isEnabled: Boolean)
|
||||
data class FilterUiModel(val lang: String, val enabled: Boolean)
|
||||
|
||||
@@ -29,6 +29,6 @@ class SourceFilterController : ComposeController<SourcesFilterPresenter>() {
|
||||
}
|
||||
|
||||
sealed class FilterUiModel {
|
||||
data class Header(val language: String, val isEnabled: Boolean) : FilterUiModel()
|
||||
data class Item(val source: Source, val isEnabled: Boolean) : FilterUiModel()
|
||||
data class Header(val language: String, val enabled: Boolean) : FilterUiModel()
|
||||
data class Item(val source: Source, val enabled: Boolean) : FilterUiModel()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user