From f6896654e89e955c4f9856f8260c31fcfb111bc3 Mon Sep 17 00:00:00 2001 From: FerdyRod Date: Tue, 16 Apr 2024 17:17:58 +0200 Subject: [PATCH] ktlint checks --- .../common/screens/toggleableInputs/MultiSelectInputScreen.kt | 2 +- .../mobile/ui/designsystem/component/InputDropDownTest.kt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/src/commonMain/kotlin/org/hisp/dhis/common/screens/toggleableInputs/MultiSelectInputScreen.kt b/common/src/commonMain/kotlin/org/hisp/dhis/common/screens/toggleableInputs/MultiSelectInputScreen.kt index 166260cf9..c00ae4cdf 100644 --- a/common/src/commonMain/kotlin/org/hisp/dhis/common/screens/toggleableInputs/MultiSelectInputScreen.kt +++ b/common/src/commonMain/kotlin/org/hisp/dhis/common/screens/toggleableInputs/MultiSelectInputScreen.kt @@ -195,7 +195,7 @@ fun MultiSelectInputScreen() { checked = i == 2, enabled = true, textInput = "Opt. $i", - ) + ), ) } diff --git a/designsystem/src/desktopTest/kotlin/org/hisp/dhis/mobile/ui/designsystem/component/InputDropDownTest.kt b/designsystem/src/desktopTest/kotlin/org/hisp/dhis/mobile/ui/designsystem/component/InputDropDownTest.kt index ce60e938b..853a4e499 100644 --- a/designsystem/src/desktopTest/kotlin/org/hisp/dhis/mobile/ui/designsystem/component/InputDropDownTest.kt +++ b/designsystem/src/desktopTest/kotlin/org/hisp/dhis/mobile/ui/designsystem/component/InputDropDownTest.kt @@ -401,9 +401,9 @@ class InputDropDownTest { @Test fun shouldShowSearchForMoreOptionTextWhenMoreThan50Option() { val dropdownItems = mutableListOf() - for (i in 1 .. 100) { + for (i in 1..100) { dropdownItems.add( - DropdownItem("Option $i") + DropdownItem("Option $i"), ) }