File tree Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -694,7 +694,7 @@ type AppState struct {
694
694
// This determines whether the git graph is rendered in the commits panel
695
695
// One of 'always' | 'never' | 'when-maximised'
696
696
GitLogShowGraph string
697
- // This determines whether the git graph is rendered in the commits panel
697
+ // This determines whether the commit tags are rendered in the commits panel
698
698
// One of 'always' | 'never' | 'when-maximised'
699
699
GitLogShowTags string
700
700
}
@@ -711,7 +711,7 @@ func getDefaultAppState() *AppState {
711
711
RemoteBranchSortOrder : "alphabetical" ,
712
712
GitLogOrder : "" , // should be "topo-order" eventually
713
713
GitLogShowGraph : "" , // should be "always" eventually
714
- GitLogShowTags : "" , // should be "always" eventually
714
+ GitLogShowTags : "" , // should be "always" eventually
715
715
}
716
716
}
717
717
Original file line number Diff line number Diff line change 520
520
# Deprecated: use nerdFontsVersion instead
521
521
showIcons: false
522
522
523
- # If true, show tags alognside commit summary in the commits view.
524
- showCommitTags: true
525
-
526
523
# Nerd fonts version to use.
527
524
# One of: '2' | '3' | empty string (default)
528
525
# If empty, do not show icons.
Original file line number Diff line number Diff line change @@ -817,7 +817,7 @@ func GetDefaultConfig() *UserConfig {
817
817
Order : "topo-order" ,
818
818
ShowGraph : "always" ,
819
819
ShowWholeGraph : false ,
820
- ShowTags : "always" ,
820
+ ShowTags : "always" ,
821
821
},
822
822
SkipHookPrefix : "WIP" ,
823
823
MainBranches : []string {"master" , "main" },
Original file line number Diff line number Diff line change @@ -779,7 +779,7 @@ type TranslationSet struct {
779
779
LogMenuTitle string
780
780
ToggleShowGitGraphAll string
781
781
ShowGitGraph string
782
- ShowTags string
782
+ ShowTags string
783
783
SortOrder string
784
784
SortAlphabetical string
785
785
SortByDate string
@@ -1869,7 +1869,7 @@ func EnglishTranslationSet() *TranslationSet {
1869
1869
LogMenuTitle : "Commit Log Options" ,
1870
1870
ToggleShowGitGraphAll : "Toggle show whole git graph (pass the `--all` flag to `git log`)" ,
1871
1871
ShowGitGraph : "Show git graph" ,
1872
- ShowTags : "Show tags" ,
1872
+ ShowTags : "Show tags" ,
1873
1873
SortOrder : "Sort order" ,
1874
1874
SortAlphabetical : "Alphabetical" ,
1875
1875
SortByDate : "Date" ,
You can’t perform that action at this time.
0 commit comments