add passphrase dialog

This commit is contained in:
2026-08-07 07:24:33 +07:00
parent e2ec35a673
commit b137f54a66
6 changed files with 241 additions and 7 deletions
+3 -2
View File
@@ -13,8 +13,9 @@ use signed_state::{Backend, BackendEvent};
use super::RepoListView;
mod import_identity_dialog;
mod import_dialog;
mod onboarding_dialog;
pub(crate) mod passphrase_dialog;
use self::onboarding_dialog::OnboardingState;
@@ -95,7 +96,7 @@ impl SidebarPanel {
/// Show the Import Identity dialog.
fn open_import(&mut self, window: &mut Window, cx: &mut Context<Self>) {
import_identity_dialog::open(window, cx);
import_dialog::open(window, cx);
}
}