File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ pub fn list_post(
22
22
{
23
23
let buf = & mut buf;
24
24
write ! ( buf, "{} {}" , "#" . dimmed( ) , entry. id. to_string( ) . dimmed( ) ) ?;
25
- write ! ( buf, " {}" , entry. title. cyan( ) . bold( ) ) ?;
26
25
if entry. is_published {
27
26
write ! ( buf, " {}" , "Pub" . green( ) ) ?;
28
27
} else {
@@ -31,6 +30,7 @@ pub fn list_post(
31
30
if entry. is_pinned {
32
31
write ! ( buf, " {}" , "Pin" . magenta( ) ) ?;
33
32
}
33
+ write ! ( buf, " {}" , entry. title. cyan( ) . bold( ) ) ?;
34
34
writeln ! ( buf) ?;
35
35
}
36
36
buf
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ pub fn list_post(
21
21
{
22
22
let buf = & mut buf;
23
23
write ! ( buf, "# {}" , entry. id) ?;
24
- write ! ( buf, " {}" , entry. title) ?;
25
24
if entry. is_published {
26
25
write ! ( buf, " Pub" ) ?;
27
26
} else {
@@ -30,6 +29,7 @@ pub fn list_post(
30
29
if entry. is_pinned {
31
30
write ! ( buf, " Pin" ) ?;
32
31
}
32
+ write ! ( buf, " {}" , entry. title) ?;
33
33
writeln ! ( buf) ?;
34
34
}
35
35
buf
You can’t perform that action at this time.
0 commit comments