Skip to content

Commit

Permalink
Made publish date monospace in table.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmackdev committed Oct 18, 2023
1 parent 6a5bd6b commit 115dffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pubsubman/src/ui/messages_view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ fn render_messages_table<'a, I>(
if let Some(publish_time) = message.publish_time {
let local_publish_time: DateTime<Local> = publish_time.into();

ui.label(format!("{}", local_publish_time.format("%d/%m/%Y %H:%M")));
ui.monospace(format!("{}", local_publish_time.format("%d/%m/%Y %H:%M")));
}
}

Expand Down

0 comments on commit 115dffe

Please sign in to comment.