Skip to content

Commit

Permalink
Decryption fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Shade authored and Shade committed Feb 4, 2025
1 parent 984c4ae commit fbeccb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ fun PasswordForm(
var selectedItems by remember { mutableStateOf(savedCategories) }

LaunchedEffect(selectedItems) {
passwordCategory?.value?.value = selectedItems.joinToString(", ") { it.name }
passwordCategory?.value?.value = selectedItems.joinToString(",") { it.name }
}

MultiSelectDropdown(
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/ui/validators/PasswordFormValidator.kt
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ fun toPasswordDto(formValidator: FormValidator, user: User): PasswordDto {
formValidator.getField(PasswordFormFieldName.NAME)?.value?.value!!,
formValidator.getField(PasswordFormFieldName.WEBSITE_URL)?.value?.value,
formValidator.getField(PasswordFormFieldName.WEBSITE_ICON_URL)?.value?.value,
formValidator.getField(PasswordFormFieldName.PASSWORD_CATEGORY)?.value?.value,
formValidator.getField(PasswordFormFieldName.PASSWORD_CATEGORY)?.value?.value?.takeIf { it.isNotEmpty() },
user
)
}
Expand Down

0 comments on commit fbeccb0

Please sign in to comment.