mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-12-27 01:42:11 +08:00
Change secrets panel shortcut to ss
This commit is contained in:
parent
2557bd0a26
commit
59a01cbc70
2 changed files with 2 additions and 2 deletions
|
@ -375,7 +375,7 @@ const Session = {
|
|||
this.queueFocusedSectionEvaluation();
|
||||
} else if (keyBuffer.tryMatch(["s", "o"])) {
|
||||
this.toggleOutline();
|
||||
} else if (keyBuffer.tryMatch(["s", "e"])) {
|
||||
} else if (keyBuffer.tryMatch(["s", "s"])) {
|
||||
this.toggleSecretsList();
|
||||
} else if (keyBuffer.tryMatch(["s", "a"])) {
|
||||
this.toggleAppInfo();
|
||||
|
|
|
@ -362,7 +362,7 @@ defmodule LivebookWeb.SessionLive.Render do
|
|||
|
||||
<.button_item
|
||||
icon="lock-password-line"
|
||||
label="Secrets (se)"
|
||||
label="Secrets (ss)"
|
||||
button_attrs={["data-el-secrets-list-toggle": true]}
|
||||
/>
|
||||
|
||||
|
|
Loading…
Reference in a new issue