You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/feature/feature-claim-chat/src/commonMain/kotlin/com/hedvig/feature/claim/chat/ui/ClaimChatDestination.kt
Copy file name to clipboardExpand all lines: app/feature/feature-claim-chat/src/commonMain/kotlin/com/hedvig/feature/claim/chat/ui/ClaimChatUiComponents.kt
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -149,7 +149,7 @@ internal fun ContentSelectChips(
149
149
150
150
StepContent.ContentSelectStyle.BINARY-> {
151
151
Row(
152
-
Modifier.fillMaxWidth(),
152
+
modifier.fillMaxWidth(),
153
153
horizontalArrangement =Arrangement.SpaceEvenly,
154
154
) {
155
155
for (item in options) {
@@ -287,9 +287,9 @@ internal fun YesNoBubble(
287
287
stringResource(Res.string.GENERAL_NO),
288
288
),
289
289
)
290
-
Column {
290
+
Column(modifier) {
291
291
Row(
292
-
modifier =modifier.fillMaxWidth(),
292
+
modifier =Modifier.fillMaxWidth(),
293
293
verticalAlignment =Alignment.CenterVertically,
294
294
horizontalArrangement =Arrangement.End,
295
295
) {
@@ -312,7 +312,7 @@ internal fun YesNoBubble(
312
312
if (errorText !=null) {
313
313
Spacer(Modifier.height(4.dp))
314
314
Row(
315
-
modifier =modifier.fillMaxWidth(),
315
+
modifier =Modifier.fillMaxWidth(),
316
316
verticalAlignment =Alignment.CenterVertically,
317
317
horizontalArrangement =Arrangement.End,
318
318
) {
@@ -349,14 +349,14 @@ internal fun SingleSelectBubbleWithDialog(
349
349
},
350
350
)
351
351
}
352
-
Column {
352
+
Column(modifier) {
353
353
HedvigBigCard(
354
354
onClick = { showDialog =true },
355
355
labelText = questionLabel,
356
356
inputText = options.firstOrNull {
357
357
it.id == selectedOptionId
358
358
}?.text,
359
-
modifier =modifier,
359
+
modifier =Modifier.fillMaxWidth(),
360
360
enabled =true,
361
361
)
362
362
AnimatedVisibility(errorText !=null) {
@@ -395,7 +395,7 @@ internal fun MultiSelectBubbleWithDialog(
0 commit comments