Radish alpha
r
Radicle terminal user interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
feat: Uppercase header labels
Erik Kundt committed 2 years ago
commit e47a0401fabf75752b3d79e95094953e462a0cda
parent 36fa0b1ad8c9e640baf1fdb889de968669f18fff
2 files changed +4 -4
modified src/issue/app/ui.rs
@@ -322,7 +322,7 @@ impl WidgetComponent for CommentBody {
pub fn list_navigation(theme: &Theme) -> Widget<Tabs> {
    common::tabs(
        theme,
-
        vec![common::reversable_label("issues").foreground(theme.colors.tabs_highlighted_fg)],
+
        vec![common::reversable_label("Issues").foreground(theme.colors.tabs_highlighted_fg)],
    )
}

modified src/patch/app/ui.rs
@@ -160,7 +160,7 @@ impl WidgetComponent for Files {
pub fn list_navigation(theme: &Theme) -> Widget<Tabs> {
    common::tabs(
        theme,
-
        vec![common::reversable_label("patches").foreground(theme.colors.tabs_highlighted_fg)],
+
        vec![common::reversable_label("Patches").foreground(theme.colors.tabs_highlighted_fg)],
    )
}

@@ -168,8 +168,8 @@ pub fn navigation(theme: &Theme) -> Widget<Tabs> {
    common::tabs(
        theme,
        vec![
-
            common::reversable_label("activity").foreground(theme.colors.tabs_highlighted_fg),
-
            common::reversable_label("files").foreground(theme.colors.tabs_highlighted_fg),
+
            common::reversable_label("Activity").foreground(theme.colors.tabs_highlighted_fg),
+
            common::reversable_label("Files").foreground(theme.colors.tabs_highlighted_fg),
        ],
    )
}