Skip to content

Commit

Permalink
feat(term): change entry column name
Browse files Browse the repository at this point in the history
  • Loading branch information
ymgyt committed Mar 19, 2024
1 parent b0768bc commit fd15bf6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/synd_term/src/ui/components/entries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ impl Entries {
) {
let header = Row::new([
Cell::from(" Published"),
Cell::from("󰯂 Title"),
Cell::from("󰯂 Entry"),
Cell::from("󰑫 Feed"),
]);

Expand Down
4 changes: 2 additions & 2 deletions crates/synd_term/src/ui/components/subscription.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ impl Subscription {
});

let widths = [
Constraint::Length(10),
Constraint::Length(11),
Constraint::Fill(1),
Constraint::Fill(2),
];
Expand Down Expand Up @@ -299,7 +299,7 @@ impl Subscription {
};

let header = Row::new([
Cell::new(Span::from("󰈙 Published")),
Cell::new(Span::from(" Published")),
Cell::new(Span::from("󰯂 Entry")),
Cell::new(Span::from("󱙓 Summary")),
]);
Expand Down

0 comments on commit fd15bf6

Please sign in to comment.