We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 481ae3a commit 6c3e0a4Copy full SHA for 6c3e0a4
src/widgets/tab.rs
@@ -452,11 +452,11 @@ impl Tab {
452
"about" => {
453
let mut about = common::ABOUT_PAGE.to_owned();
454
about.push_str(&format!(
455
- "App ID: {}\n Version: {}",
+ "\n\n## Metadata\n\nApp ID: {}\nVersion: {}",
456
crate::config::APP_ID,
457
crate::config::VERSION
458
));
459
- let reader = futures::io::BufReader::new(common::ABOUT_PAGE.as_bytes());
+ let reader = futures::io::BufReader::new(about.as_bytes());
460
self.display_gemini(reader).await?;
461
Ok(None)
462
}
0 commit comments