From bd470efa67289b0337106fbb183a0f5ad5a1692d Mon Sep 17 00:00:00 2001 From: Hamza Ahmed Khan <70560433+hamza-vd@users.noreply.github.com> Date: Mon, 10 Jun 2024 16:59:42 +0500 Subject: [PATCH] Interpolate row clickable property (#3324) Interpolate row clickable property --- .../fhircore/engine/configuration/view/RowProperties.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/android/engine/src/main/java/org/smartregister/fhircore/engine/configuration/view/RowProperties.kt b/android/engine/src/main/java/org/smartregister/fhircore/engine/configuration/view/RowProperties.kt index aaa240dccb..59e4becccc 100644 --- a/android/engine/src/main/java/org/smartregister/fhircore/engine/configuration/view/RowProperties.kt +++ b/android/engine/src/main/java/org/smartregister/fhircore/engine/configuration/view/RowProperties.kt @@ -47,6 +47,7 @@ data class RowProperties( return this.copy( backgroundColor = backgroundColor?.interpolate(computedValuesMap), visible = visible.interpolate(computedValuesMap), + clickable = clickable.interpolate(computedValuesMap), ) } }