Added 'save password' tab to auth activity when saving bookmarks

This commit is contained in:
ChristianVisintin
2020-12-16 17:01:11 +01:00
parent 344bf8604f
commit 335bfc8460
4 changed files with 66 additions and 18 deletions

View File

@@ -53,6 +53,8 @@ impl AuthActivity {
///
/// Callback used to save bookmark with name
pub(super) fn callback_save_bookmark(&mut self, input: String) {
self.save_bookmark(input);
if !input.is_empty() {
self.save_bookmark(input);
}
}
}