Skip to content

Commit

Permalink
dep v bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mvysny committed Mar 28, 2024
1 parent c007bed commit c70074a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ dependencies {
}
}
implementation(libs.vok.db)
implementation(libs.karibu.dsl)
implementation(libs.vaadin.boot)

implementation(libs.hikaricp)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class CategoriesList : KComposite() {
icon = Icon(VaadinIcon.EDIT)
addClassName("category__edit")
addThemeVariants(ButtonVariant.LUMO_TERTIARY)
onLeftClick { edit(category) }
onClick { edit(category) }
}

private fun edit(category: Category) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class ReviewItem(val row: ReviewWithCategory) : KComposite() {
icon = VaadinIcon.EDIT.create()
className = "review__edit"
addThemeVariants(ButtonVariant.LUMO_TERTIARY)
onLeftClick { onEdit() }
onClick { onEdit() }
}
}
}
Expand Down

0 comments on commit c70074a

Please sign in to comment.