This commit is contained in:
Stephan Dilly 2020-10-11 14:36:08 +02:00
parent b6c932d0af
commit bb1abb22c0
2 changed files with 1 additions and 2 deletions

View file

@ -28,7 +28,6 @@ pub enum Action {
Reset(ResetItem), Reset(ResetItem),
ResetHunk(String, u64), ResetHunk(String, u64),
StashDrop(CommitId), StashDrop(CommitId),
///
DeleteBranch(String), DeleteBranch(String),
} }

View file

@ -99,7 +99,7 @@ pub fn confirm_msg_delete_branch(
_key_config: &SharedKeyConfig, _key_config: &SharedKeyConfig,
branch_ref: String, branch_ref: String,
) -> String { ) -> String {
branch_ref + "\nconfirm delete branch?" format!("Confirm deleting branch: '{}' ?", branch_ref)
} }
pub fn log_title(_key_config: &SharedKeyConfig) -> String { pub fn log_title(_key_config: &SharedKeyConfig) -> String {
"Commit".to_string() "Commit".to_string()