Skip to content

Commit

Permalink
Merge branch 'master' into flair
Browse files Browse the repository at this point in the history
* master:
  Fix cli search for mobile
  Update lettuce-core to 6.3.0.RELEASE
  • Loading branch information
ornicar committed Nov 18, 2023
2 parents 321ef28 + b6d3639 commit c931bda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object Dependencies {
val googleOAuth = "com.google.auth" % "google-auth-library-oauth2-http" % "1.20.0"
val galimatias = "io.mola.galimatias" % "galimatias" % "0.2.2-NF"
val scalatags = "com.lihaoyi" %% "scalatags" % "0.12.0"
val lettuce = "io.lettuce" % "lettuce-core" % "6.2.7.RELEASE"
val lettuce = "io.lettuce" % "lettuce-core" % "6.3.0.RELEASE"
val nettyTransport =
"io.netty" % s"netty-transport-native-$notifier" % "4.1.101.Final" classifier s"$os-$arch"
val munit = "org.scalameta" %% "munit" % "1.0.0-M10" % Test
Expand Down
2 changes: 1 addition & 1 deletion ui/cli/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function initModule({ input }: { input: HTMLInputElement }) {
onSelect: r => execute(r.name),
});
$(input).on('keydown', (e: KeyboardEvent) => {
if (e.code == 'Enter') {
if (e.key == 'Enter') {
execute(input.value);
input.blur();
}
Expand Down

0 comments on commit c931bda

Please sign in to comment.