Skip to content

Commit a52ff01

Browse files
committed
Fix tag
1 parent 13ef8d7 commit a52ff01

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

CodeEdit/Features/NavigatorArea/SourceControlNavigator/History/Views/CommitListItemView.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,11 @@ struct CommitListItemView: View {
9292
Image.branch
9393
.imageScale(.small)
9494
.foregroundColor(.primary)
95+
.help(ref)
9596
Text(ref)
9697
.font(.system(size: 10, design: .monospaced))
9798
}
99+
.frame(height: 13)
98100
.background(
99101
RoundedRectangle(cornerRadius: 3)
100102
.padding(.vertical, -1)
@@ -105,15 +107,17 @@ struct CommitListItemView: View {
105107
}
106108
}
107109
}
108-
110+
109111
if !commit.tag.isEmpty {
110112
HStack {
111113
Image.breakpoint
112114
.imageScale(.small)
113115
.foregroundColor(.primary)
116+
.help(commit.tag)
114117
Text(commit.tag)
115118
.font(.system(size: 10, design: .monospaced))
116119
}
120+
.frame(height: 13)
117121
.background(
118122
RoundedRectangle(cornerRadius: 3)
119123
.padding(.vertical, -1)

0 commit comments

Comments
 (0)