Skip to content

Commit fefd64a

Browse files
committed
correct format
1 parent c75268d commit fefd64a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/commitlist.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,9 @@ impl CommitList {
214214
.join(" ");
215215

216216
if let Err(e) = crate::clipboard::copy_string(&separate) {
217-
self.queue
218-
.push(InternalEvent::ShowErrorMsg(copy_fail(e.to_string())));
217+
self.queue.push(InternalEvent::ShowErrorMsg(
218+
copy_fail(e.to_string()),
219+
));
219220
return Err(e);
220221
}
221222
self.queue.push(InternalEvent::ShowInfoMsg(

0 commit comments

Comments
 (0)